diff --git a/.circleci/config.yml b/.circleci/config.yml index 7efeec46ea3..189a9709d90 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,15 +1,31 @@ version: 2.1 -# Common variables, containers, jobs and steps. -job_defaults: &job_defaults - # TODO: We should move away from using a directory - # TODO: that requires root permission to be created. - # TODO: Changing this requires rebuilding all docker images. - working_directory: /app - shell: /bin/bash --login - test_containers: - - &job_parameters + - &container_base + image: <> + environment: + BUNDLE_GEMFILE: /app/Gemfile + JRUBY_OPTS: --dev # Faster JVM startup: https://github.com/jruby/jruby/wiki/Improving-startup-time#use-the---dev-flag + # Override number of concurrent compiles in grpc gem, see https://github.com/grpc/grpc/pull/28250 and https://github.com/DataDog/dd-trace-rb/issues/1791 + # If you see gem installation failing with "Killed" on CircleCI and `gem install --platform ruby grpc` reproduces the + # issue when you connect to the testing container via ssh, then try lowering this file a notch. + GRPC_RUBY_BUILD_PROCS: 6 + DD_INSTRUMENTATION_TELEMETRY_ENABLED: false + DD_REMOTE_CONFIGURATION_ENABLED: false + TEST_OPENSEARCH_HOST: opensearch + TEST_OPENSEARCH_PORT: 9200 + DD_AGENT_HOST: testagent + DD_TRACE_AGENT_PORT: 9126 + DATADOG_GEM_CI: true + TEST_DATADOG_INTEGRATION: 1 + COVERAGE_BASE_DIR: coverage + - &test_job_default + # TODO: We should move away from using a directory + # TODO: that requires root permission to be created. + # TODO: Changing this requires rebuilding all docker images. + working_directory: /app + shell: /bin/bash --login + resource_class: <> parameters: ruby_version: description: Ruby version @@ -25,98 +41,8 @@ test_containers: description: Use latest version of dependencies during testing type: boolean default: false - resource_class: <> - - &container_base_environment - BUNDLE_GEMFILE: /app/Gemfile - JRUBY_OPTS: --dev # Faster JVM startup: https://github.com/jruby/jruby/wiki/Improving-startup-time#use-the---dev-flag - # Override number of concurrent compiles in grpc gem, see https://github.com/grpc/grpc/pull/28250 and https://github.com/DataDog/dd-trace-rb/issues/1791 - # If you see gem installation failing with "Killed" on CircleCI and `gem install --platform ruby grpc` reproduces the - # issue when you connect to the testing container via ssh, then try lowering this file a notch. - GRPC_RUBY_BUILD_PROCS: 6 - DD_INSTRUMENTATION_TELEMETRY_ENABLED: false - DD_REMOTE_CONFIGURATION_ENABLED: false - TEST_OPENSEARCH_HOST: opensearch - TEST_OPENSEARCH_PORT: 9200 - DD_AGENT_HOST: testagent - DD_TRACE_AGENT_PORT: 9126 - DATADOG_GEM_CI: true - - &container_parameters_environment - - *container_base_environment - - TEST_DATADOG_INTEGRATION: 1 - - COVERAGE_BASE_DIR: coverage - - &container_base - image: <> - environment: - *container_parameters_environment - - &test_job_default - <<: *job_defaults - <<: *job_parameters docker: - *container_base - - &container_postgres - image: postgres:9.6 - environment: - - POSTGRES_PASSWORD=postgres - - POSTGRES_USER=postgres - - POSTGRES_DB=postgres - - &postgres_port 5432 - - &container_presto - # Move to trinodb/trino after https://github.com/treasure-data/presto-client-ruby/issues/64 is resolved. - image: starburstdata/presto:332-e.9 - - &presto_port 8080 - - &container_mysql - image: mysql:8.0 - # As of MySQL 8.0, caching_sha2_password is now the default authentication plugin - # rather than mysql_native_password which was the default in previous versions. - command: --default-authentication-plugin=mysql_native_password - environment: - - MYSQL_ROOT_PASSWORD=root - - MYSQL_PASSWORD=mysql - - MYSQL_USER=mysql - - &mysql_port 3306 - - &opensearch_host opensearch - - &container_opensearch - image: opensearchproject/opensearch:2.8.0 - name: *opensearch_host - environment: - - discovery.type=single-node - - DISABLE_SECURITY_PLUGIN=true - - DISABLE_PERFORMANCE_ANALYZER_AGENT_CLI=true - # Make sure it works on nearly full disk. - - cluster.routing.allocation.disk.threshold_enabled=true - - cluster.routing.allocation.disk.watermark.low=3gb - - cluster.routing.allocation.disk.watermark.high=2gb - - cluster.routing.allocation.disk.watermark.flood_stage=1gb - - cluster.routing.allocation.disk.threshold_enabled=false - - &opensearch_port 9200 - - &container_elasticsearch - image: elasticsearch:8.1.3 - environment: - # Ensure production cluster requirements are not enforced - - discovery.type=single-node - - xpack.security.enabled=false - - ES_JAVA_OPTS=-Xms750m -Xmx750m - - &elasticsearch_port 9200 - - &container_redis - image: redis:6.2 - - &redis_port 6379 - - &container_mongo - image: mongo:3.5 - - &mongo_port 27017 - - &container_memcached - image: memcached:1.5-alpine - - &memcached_port 11211 - - &container_testagent - image: ghcr.io/datadog/dd-apm-test-agent/ddapm-test-agent:v1.12.0 - name: testagent - environment: - - LOG_LEVEL=DEBUG - - TRACE_LANGUAGE=ruby - - PORT=9126 - - DD_POOL_TRACE_CHECK_FAILURES=true - - DD_DISABLE_ERROR_RESPONSES=true - - ENABLED_CHECKS=trace_content_length,trace_stall,meta_tracer_version_header,trace_count_header,trace_peer_service,trace_dd_service - - &testagent_port 9126 check_exact_bundle_cache_hit: &check_exact_bundle_cache_hit run: @@ -151,22 +77,6 @@ step_bundle_install: &step_bundle_install else echo "All required gems were found in cache." fi -step_rubocop: &step_rubocop - run: - name: Delint with Rubocop - # There's no straightforward way to get the number of available processors & CPU threads in CircleCI. - # Currently it always return 18 physical processors and 36 threads, regardless of executor size. - # The workaround is to use `cpu.shares / 1024`: - # https://discuss.circleci.com/t/environment-variable-set-to-the-number-of-available-cpus/32670/4 - command: PARALLEL_PROCESSOR_COUNT=$((`cat /sys/fs/cgroup/cpu/cpu.shares` / 1024)) bundle exec rake rubocop -step_standardrb: &step_standardrb - run: - name: Delint with Standardrb - # There's no straightforward way to get the number of available processors & CPU threads in CircleCI. - # Currently it always return 18 physical processors and 36 threads, regardless of executor size. - # The workaround is to use `cpu.shares / 1024`: - # https://discuss.circleci.com/t/environment-variable-set-to-the-number-of-available-cpus/32670/4 - command: PARALLEL_PROCESSOR_COUNT=$((`cat /sys/fs/cgroup/cpu/cpu.shares` / 1024)) bundle exec rake standard step_appraisal_install: &step_appraisal_install run: name: Install Appraisal gems @@ -244,12 +154,6 @@ filters_all_branches_and_tags: &filters_all_branches_and_tags filters: tags: only: /.*/ -filters_only_release_tags: &filters_only_release_tags - filters: - branches: - ignore: /.*/ - tags: - only: /^v\d+(\.\d+){0,3}(\.(alpha|beta|rc)\d+)?$/ orbs: orb: @@ -258,7 +162,6 @@ orbs: jobs: build: <<: *test_job_default - resource_class: <> steps: - checkout - restore_cache: @@ -324,15 +227,50 @@ orbs: <<: *test_job_default docker: - <<: *container_base - - *container_postgres - - *container_presto - - *container_mysql - - *container_opensearch - - *container_elasticsearch - - *container_redis - - *container_mongo - - *container_memcached - - *container_testagent + - image: postgres:9.6 + environment: + - POSTGRES_PASSWORD=postgres + - POSTGRES_USER=postgres + - POSTGRES_DB=postgres + - image: starburstdata/presto:332-e.9 # Move to trinodb/trino after https://github.com/treasure-data/presto-client-ruby/issues/64 is resolved. + - image: mysql:8.0 + # As of MySQL 8.0, caching_sha2_password is now the default authentication plugin + # rather than mysql_native_password which was the default in previous versions. + command: --default-authentication-plugin=mysql_native_password + environment: + - MYSQL_ROOT_PASSWORD=root + - MYSQL_PASSWORD=mysql + - MYSQL_USER=mysql + - image: opensearchproject/opensearch:2.8.0 + name: opensearch + environment: + - discovery.type=single-node + - DISABLE_SECURITY_PLUGIN=true + - DISABLE_PERFORMANCE_ANALYZER_AGENT_CLI=true + # Make sure it works on nearly full disk. + - cluster.routing.allocation.disk.threshold_enabled=true + - cluster.routing.allocation.disk.watermark.low=3gb + - cluster.routing.allocation.disk.watermark.high=2gb + - cluster.routing.allocation.disk.watermark.flood_stage=1gb + - cluster.routing.allocation.disk.threshold_enabled=false + - image: elasticsearch:8.1.3 + environment: + # Ensure production cluster requirements are not enforced + - discovery.type=single-node + - xpack.security.enabled=false + - ES_JAVA_OPTS=-Xms750m -Xmx750m + - image: redis:6.2 + - image: mongo:3.5 + - image: memcached:1.5-alpine + - image: ghcr.io/datadog/dd-apm-test-agent/ddapm-test-agent:v1.18.0 + name: testagent + environment: + - LOG_LEVEL=DEBUG + - TRACE_LANGUAGE=ruby + - PORT=9126 + - DD_POOL_TRACE_CHECK_FAILURES=true + - DD_DISABLE_ERROR_RESPONSES=true + - ENABLED_CHECKS=trace_content_length,trace_stall,meta_tracer_version_header,trace_count_header,trace_peer_service,trace_dd_service parallelism: 22 steps: - restore_cache: @@ -346,28 +284,41 @@ orbs: command: | # Create a unique coverage directory for this job, to avoid conflicts when merging all results echo 'export COVERAGE_DIR="$COVERAGE_BASE_DIR/versions/$CIRCLE_JOB/$CIRCLE_NODE_INDEX"' >> $BASH_ENV + # Install dockerize + - run: + name: Install dockerize + command: | + DOCKERIZE_URL="https://github.com/powerman/dockerize/releases/download/v0.17.0/dockerize-$(uname -s | tr '[:upper:]' '[:lower:]')-$(arch | sed 's/aarch64/arm64/')" + DOCKERIZE_URL: $DOCKERIZE_URL + curl --silent --show-error --location --fail --retry 3 --output /usr/local/bin/dockerize $DOCKERIZE_URL + chmod +x /usr/local/bin/dockerize + dockerize --version # Wait for containers to start - docker-wait: - port: *postgres_port + port: 5432 - docker-wait: - port: *presto_port + port: 8080 - docker-wait: - port: *mysql_port + port: 3306 - docker-wait: - host: *opensearch_host - port: *opensearch_port + host: opensearch + port: 9200 - docker-wait: - port: *elasticsearch_port + port: 9200 - docker-wait: - port: *redis_port + port: 6379 - docker-wait: - port: *mongo_port + port: 27017 - docker-wait: - port: *memcached_port + port: 11211 - docker-wait: host: "testagent" - port: *testagent_port + port: 9126 - *step_run_all_tests + - run: + # Test agent uses `jq` to check results + name: Install jq + command: apt update && apt install jq -y - *step_get_test_agent_trace_check_results - store_test_results: path: /tmp/rspec @@ -375,17 +326,6 @@ orbs: root: . paths: - coverage - lint: - <<: *test_job_default - steps: - - restore_cache: - keys: - - '{{ .Environment.CIRCLE_CACHE_VERSION }}-bundled-repo-<>-{{ .Environment.CIRCLE_SHA1 }}' - - restore_cache: - keys: - - bundle-{{ .Environment.CIRCLE_CACHE_VERSION }}-{{ checksum ".circleci/images/primary/binary_version" }}-<>-{{ checksum "lib/datadog/version.rb" }}-{{ .Branch }}-{{ checksum ".circleci/bundle_checksum" }} - - *step_rubocop - - *step_standardrb coverage: <<: *test_job_default steps: @@ -457,17 +397,17 @@ job_configuration: - &config-2_5 <<: *filters_all_branches_and_tags ruby_version: 'ruby-2.5.9' - image: ghcr.io/datadog/dd-trace-rb/ruby:2.5.9-dd + image: ghcr.io/datadog/images-rb/engines/ruby:2.5 resource_class_to_use: medium+ - &config-2_6 <<: *filters_all_branches_and_tags ruby_version: 'ruby-2.6.10' - image: ghcr.io/datadog/dd-trace-rb/ruby:2.6.10-dd + image: ghcr.io/datadog/images-rb/engines/ruby:2.6 resource_class_to_use: medium+ - &config-2_7 <<: *filters_all_branches_and_tags ruby_version: 'ruby-2.7.6' - image: ghcr.io/datadog/dd-trace-rb/ruby:2.7.6-dd + image: ghcr.io/datadog/images-rb/engines/ruby:2.7 resource_class_to_use: medium+ - &config-2_7-small <<: *config-2_7 @@ -475,49 +415,44 @@ job_configuration: - &config-3_0 <<: *filters_all_branches_and_tags ruby_version: 'ruby-3.0.4' - image: ghcr.io/datadog/dd-trace-rb/ruby:3.0.4-dd + image: ghcr.io/datadog/images-rb/engines/ruby:3.0 resource_class_to_use: medium+ - &config-3_1 <<: *filters_all_branches_and_tags ruby_version: 'ruby-3.1.2' - image: ghcr.io/datadog/dd-trace-rb/ruby:3.1.2-dd + image: ghcr.io/datadog/images-rb/engines/ruby:3.1 resource_class_to_use: medium+ - &config-3_2 <<: *filters_all_branches_and_tags ruby_version: 'ruby-3.2.0' - image: ghcr.io/datadog/dd-trace-rb/ruby:3.2.0-dd + image: ghcr.io/datadog/images-rb/engines/ruby:3.2 resource_class_to_use: medium+ - &config-3_3 <<: *filters_all_branches_and_tags ruby_version: 'ruby-3.3.0' - image: ghcr.io/datadog/dd-trace-rb/ruby:3.3.0-dd + image: ghcr.io/datadog/images-rb/engines/ruby:3.3 resource_class_to_use: medium+ # ADD NEW RUBIES HERE - &config-jruby-9_2 # More recent release of 9.2 <<: *filters_all_branches_and_tags ruby_version: 'jruby-9.2.21.0' - image: ghcr.io/datadog/dd-trace-rb/jruby:9.2.21.0-dd + image: ghcr.io/datadog/images-rb/engines/jruby:9.2 resource_class_to_use: large - &config-jruby-9_3 <<: *filters_all_branches_and_tags ruby_version: 'jruby-9.3.9.0' - image: ghcr.io/datadog/dd-trace-rb/jruby:9.3.9.0-dd + image: ghcr.io/datadog/images-rb/engines/jruby:9.3 resource_class_to_use: large - &config-jruby-9_4 <<: *filters_all_branches_and_tags ruby_version: 'jruby-9.4.7.0' - image: ghcr.io/datadog/dd-trace-rb/jruby:9.4.7.0-dd + image: ghcr.io/datadog/images-rb/engines/jruby:9.4 resource_class_to_use: large workflows: version: 2 build-and-test: jobs: - - orb/lint: - <<: *config-2_7-small - name: lint - requires: - - build-2.7 - orb/coverage: <<: *config-2_7-small name: coverage @@ -661,142 +596,3 @@ workflows: name: test-jruby-9.4 requires: - build-jruby-9.4 - # This workflow runs the same `build` and `test` jobs as above on a schedule. - # Tasks related to housekeeping (e.g. prerelease) are not relevant - # to this daily check, as they are not expected to be impacted here. - edge: - triggers: - - schedule: - cron: "0 0 * * 1-5" # Every weekday - filters: - branches: - only: - - master - jobs: - # Integration - - orb/build_and_test_integration: - name: build_and_test_integration-2.5 - integration_apps: 'rack rails-five rails-six' - ruby_version: '2.5' - <<: *filters_all_branches_and_tags - - orb/build_and_test_integration: - name: build_and_test_integration-2.6 - integration_apps: 'rack rails-five rails-six sinatra2-classic sinatra2-modular' - ruby_version: '2.6' - <<: *filters_all_branches_and_tags - - orb/build_and_test_integration: - name: build_and_test_integration-2.7 - integration_apps: 'rack rails-five rails-six rails-seven sinatra2-classic sinatra2-modular' - ruby_version: '2.7' - <<: *filters_all_branches_and_tags - - orb/build_and_test_integration: - name: build_and_test_integration-3.0 - integration_apps: 'rack rails-six rails-seven sinatra2-classic sinatra2-modular' - ruby_version: '3.0' - <<: *filters_all_branches_and_tags - - orb/build_and_test_integration: - name: build_and_test_integration-3.1 - integration_apps: 'rack rails-six rails-seven sinatra2-classic sinatra2-modular' - ruby_version: '3.1' - <<: *filters_all_branches_and_tags - - orb/build_and_test_integration: - name: build_and_test_integration-3.2 - integration_apps: 'rack rails-six rails-seven sinatra2-classic sinatra2-modular' - ruby_version: '3.2' - <<: *filters_all_branches_and_tags - - orb/build_and_test_integration: - name: build_and_test_integration-3.3 - integration_apps: 'rack rails-six rails-seven sinatra2-classic sinatra2-modular' - ruby_version: '3.3' - <<: *filters_all_branches_and_tags - # ADD NEW RUBIES HERE - - orb/build: - <<: *config-2_5 - name: build-2.5 - edge: true - - orb/test: - <<: *config-2_5 - name: test-2.5 - requires: - - build-2.5 - - orb/build: - <<: *config-2_6 - name: build-2.6 - edge: true - - orb/test: - <<: *config-2_6 - name: test-2.6 - requires: - - build-2.6 - - orb/build: - <<: *config-2_7 - name: build-2.7 - edge: true - - orb/test: - <<: *config-2_7 - name: test-2.7 - requires: - - build-2.7 - - orb/build: - <<: *config-3_0 - name: build-3.0 - edge: true - - orb/test: - <<: *config-3_0 - name: test-3.0 - requires: - - build-3.0 - - orb/build: - <<: *config-3_1 - name: build-3.1 - edge: true - - orb/test: - <<: *config-3_1 - name: test-3.1 - requires: - - build-3.1 - - orb/build: - <<: *config-3_2 - name: build-3.2 - edge: true - - orb/test: - <<: *config-3_2 - name: test-3.2 - requires: - - build-3.2 - - orb/build: - <<: *config-3_3 - name: build-3.3 - edge: true - - orb/test: - <<: *config-3_3 - name: test-3.3 - requires: - - build-3.3 - # ADD NEW RUBIES HERE - - orb/build: - <<: *config-jruby-9_2 - name: build-jruby-9.2 - edge: true - - orb/test: - <<: *config-jruby-9_2 - name: test-jruby-9.2 - requires: - - build-jruby-9.2 - - orb/build: - <<: *config-jruby-9_3 - name: build-jruby-9.3 - edge: true - - orb/test: - <<: *config-jruby-9_3 - name: test-jruby-9.3 - requires: - - build-jruby-9.3 - - orb/build: - <<: *config-jruby-9_4 - name: build-jruby-9.4 - - orb/test: - <<: *config-jruby-9_4 - name: test-jruby-9.4 - requires: - - build-jruby-9.4 diff --git a/.circleci/images/primary/Dockerfile-2.5.9 b/.circleci/images/primary/Dockerfile-2.5.9 deleted file mode 100644 index 2e114204baf..00000000000 --- a/.circleci/images/primary/Dockerfile-2.5.9 +++ /dev/null @@ -1,68 +0,0 @@ -# Note: See the "Publishing updates to images" note in ./README.md for how to publish new builds of this container image - -FROM ruby:2.5.9-buster - -# Make apt non-interactive -RUN echo 'APT::Get::Assume-Yes "true";' > /etc/apt/apt.conf.d/90circleci \ - && echo 'DPkg::Options "--force-confnew";' >> /etc/apt/apt.conf.d/90circleci - -ENV DEBIAN_FRONTEND=noninteractive - -# Install required packages -RUN set -ex; \ - apt-get update; \ - mkdir -p /usr/share/man/man1; \ - apt-get install -y --no-install-recommends \ - git mercurial xvfb \ - locales sudo openssh-client ca-certificates tar gzip parallel \ - net-tools netcat unzip zip bzip2 gnupg curl wget \ - tzdata rsync vim less jq; \ - rm -rf /var/lib/apt/lists/*; - -# Set timezone to UTC by default -RUN ln -sf /usr/share/zoneinfo/Etc/UTC /etc/localtime - -# Ensure sane locale (Uncomment `en_US.UTF-8` from `/etc/locale.gen` before running `locale-gen`) -RUN sed -i '/en_US.UTF-8/s/^# //g' /etc/locale.gen && locale-gen -ENV LANG en_US.UTF-8 -ENV LANGUAGE en_US:en - -# Install Docker -RUN set -ex \ - && export DOCKER_VERSION=$(curl --silent --fail --retry 3 https://download.docker.com/linux/static/stable/$(arch)/ | grep -o -e 'docker-[.0-9]*-ce\.tgz' | sort -r | head -n 1) \ - && DOCKER_URL="https://download.docker.com/linux/static/stable/$(arch)/${DOCKER_VERSION}" \ - && echo DOCKER_URL: $DOCKER_URL \ - && curl --silent --show-error --location --fail --retry 3 --output /tmp/docker.tgz "${DOCKER_URL}" \ - && ls -lha /tmp/docker.tgz \ - && tar -xz -C /tmp -f /tmp/docker.tgz \ - && mv /tmp/docker/* /usr/bin \ - && rm -rf /tmp/docker /tmp/docker.tgz \ - && which docker \ - && (docker version || true) - -# Install Docker Compose -RUN COMPOSE_URL="https://github.com/linuxserver/docker-docker-compose/releases/download/1.29.2-ls51/docker-compose-$(dpkg --print-architecture)" \ - && echo COMPOSE_URL: $COMPOSE_URL \ - && curl --silent --show-error --location --fail --retry 3 --output /usr/bin/docker-compose $COMPOSE_URL \ - && chmod +x /usr/bin/docker-compose \ - && docker-compose version - -# Install Dockerize -RUN DOCKERIZE_URL="https://github.com/powerman/dockerize/releases/download/v0.17.0/dockerize-$(uname -s | tr '[:upper:]' '[:lower:]')-$(arch | sed 's/aarch64/arm64/')" \ - && echo DOCKERIZE_URL: $DOCKERIZE_URL \ - && curl --silent --show-error --location --fail --retry 3 --output /usr/local/bin/dockerize $DOCKERIZE_URL \ - && chmod +x /usr/local/bin/dockerize \ - && dockerize --version - -# Install RubyGems -RUN mkdir -p "$GEM_HOME" && chmod -R 777 "$GEM_HOME" - -# Install a pinned RubyGems and Bundler -RUN gem update --system 3.3.26 -RUN gem install bundler:2.3.26 -ENV BUNDLE_SILENCE_ROOT_WARNING 1 - -RUN mkdir /app -WORKDIR /app - -CMD ["/bin/sh"] diff --git a/.circleci/images/primary/Dockerfile-2.6.10 b/.circleci/images/primary/Dockerfile-2.6.10 deleted file mode 100644 index 2a05275df84..00000000000 --- a/.circleci/images/primary/Dockerfile-2.6.10 +++ /dev/null @@ -1,68 +0,0 @@ -# Note: See the "Publishing updates to images" note in ./README.md for how to publish new builds of this container image - -FROM ruby:2.6.10-bullseye - -# Make apt non-interactive -RUN echo 'APT::Get::Assume-Yes "true";' > /etc/apt/apt.conf.d/90circleci \ - && echo 'DPkg::Options "--force-confnew";' >> /etc/apt/apt.conf.d/90circleci - -ENV DEBIAN_FRONTEND=noninteractive - -# Install required packages -RUN set -ex; \ - apt-get update; \ - mkdir -p /usr/share/man/man1; \ - apt-get install -y --no-install-recommends \ - git mercurial xvfb \ - locales sudo openssh-client ca-certificates tar gzip parallel \ - net-tools netcat unzip zip bzip2 gnupg curl wget \ - tzdata rsync vim less jq; \ - rm -rf /var/lib/apt/lists/*; - -# Set timezone to UTC by default -RUN ln -sf /usr/share/zoneinfo/Etc/UTC /etc/localtime - -# Ensure sane locale (Uncomment `en_US.UTF-8` from `/etc/locale.gen` before running `locale-gen`) -RUN sed -i '/en_US.UTF-8/s/^# //g' /etc/locale.gen && locale-gen -ENV LANG en_US.UTF-8 -ENV LANGUAGE en_US:en - -# Install Docker -RUN set -ex \ - && export DOCKER_VERSION=$(curl --silent --fail --retry 3 https://download.docker.com/linux/static/stable/$(arch)/ | grep -o -e 'docker-[.0-9]*-ce\.tgz' | sort -r | head -n 1) \ - && DOCKER_URL="https://download.docker.com/linux/static/stable/$(arch)/${DOCKER_VERSION}" \ - && echo DOCKER_URL: $DOCKER_URL \ - && curl --silent --show-error --location --fail --retry 3 --output /tmp/docker.tgz "${DOCKER_URL}" \ - && ls -lha /tmp/docker.tgz \ - && tar -xz -C /tmp -f /tmp/docker.tgz \ - && mv /tmp/docker/* /usr/bin \ - && rm -rf /tmp/docker /tmp/docker.tgz \ - && which docker \ - && (docker version || true) - -# Install Docker Compose -RUN COMPOSE_URL="https://github.com/linuxserver/docker-docker-compose/releases/download/1.29.2-ls51/docker-compose-$(dpkg --print-architecture)" \ - && echo COMPOSE_URL: $COMPOSE_URL \ - && curl --silent --show-error --location --fail --retry 3 --output /usr/bin/docker-compose $COMPOSE_URL \ - && chmod +x /usr/bin/docker-compose \ - && docker-compose version - -# Install Dockerize -RUN DOCKERIZE_URL="https://github.com/powerman/dockerize/releases/download/v0.17.0/dockerize-$(uname -s | tr '[:upper:]' '[:lower:]')-$(arch | sed 's/aarch64/arm64/')" \ - && echo DOCKERIZE_URL: $DOCKERIZE_URL \ - && curl --silent --show-error --location --fail --retry 3 --output /usr/local/bin/dockerize $DOCKERIZE_URL \ - && chmod +x /usr/local/bin/dockerize \ - && dockerize --version - -# Install RubyGems -RUN mkdir -p "$GEM_HOME" && chmod -R 777 "$GEM_HOME" - -# Install a pinned RubyGems and Bundler -RUN gem update --system 3.3.26 -RUN gem install bundler:2.3.26 -ENV BUNDLE_SILENCE_ROOT_WARNING 1 - -RUN mkdir /app -WORKDIR /app - -CMD ["/bin/sh"] diff --git a/.circleci/images/primary/Dockerfile-2.7.8 b/.circleci/images/primary/Dockerfile-2.7.8 deleted file mode 100644 index 3dc70f4110e..00000000000 --- a/.circleci/images/primary/Dockerfile-2.7.8 +++ /dev/null @@ -1,68 +0,0 @@ -# Note: See the "Publishing updates to images" note in ./README.md for how to publish new builds of this container image - -FROM ruby:2.7.8-bullseye - -# Make apt non-interactive -RUN echo 'APT::Get::Assume-Yes "true";' > /etc/apt/apt.conf.d/90circleci \ - && echo 'DPkg::Options "--force-confnew";' >> /etc/apt/apt.conf.d/90circleci - -ENV DEBIAN_FRONTEND=noninteractive - -# Install required packages -RUN set -ex; \ - apt-get update; \ - mkdir -p /usr/share/man/man1; \ - apt-get install -y --no-install-recommends \ - git mercurial xvfb \ - locales sudo openssh-client ca-certificates tar gzip parallel \ - net-tools netcat unzip zip bzip2 gnupg curl wget \ - tzdata rsync vim less jq; \ - rm -rf /var/lib/apt/lists/*; - -# Set timezone to UTC by default -RUN ln -sf /usr/share/zoneinfo/Etc/UTC /etc/localtime - -# Ensure sane locale (Uncomment `en_US.UTF-8` from `/etc/locale.gen` before running `locale-gen`) -RUN sed -i '/en_US.UTF-8/s/^# //g' /etc/locale.gen && locale-gen -ENV LANG en_US.UTF-8 -ENV LANGUAGE en_US:en - -# Install Docker -RUN set -ex \ - && export DOCKER_VERSION=$(curl --silent --fail --retry 3 https://download.docker.com/linux/static/stable/$(arch)/ | grep -o -e 'docker-[.0-9]*-ce\.tgz' | sort -r | head -n 1) \ - && DOCKER_URL="https://download.docker.com/linux/static/stable/$(arch)/${DOCKER_VERSION}" \ - && echo DOCKER_URL: $DOCKER_URL \ - && curl --silent --show-error --location --fail --retry 3 --output /tmp/docker.tgz "${DOCKER_URL}" \ - && ls -lha /tmp/docker.tgz \ - && tar -xz -C /tmp -f /tmp/docker.tgz \ - && mv /tmp/docker/* /usr/bin \ - && rm -rf /tmp/docker /tmp/docker.tgz \ - && which docker \ - && (docker version || true) - -# Install Docker Compose -RUN COMPOSE_URL="https://github.com/linuxserver/docker-docker-compose/releases/download/1.29.2-ls51/docker-compose-$(dpkg --print-architecture)" \ - && echo COMPOSE_URL: $COMPOSE_URL \ - && curl --silent --show-error --location --fail --retry 3 --output /usr/bin/docker-compose $COMPOSE_URL \ - && chmod +x /usr/bin/docker-compose \ - && docker-compose version - -# Install Dockerize -RUN DOCKERIZE_URL="https://github.com/powerman/dockerize/releases/download/v0.17.0/dockerize-$(uname -s | tr '[:upper:]' '[:lower:]')-$(arch | sed 's/aarch64/arm64/')" \ - && echo DOCKERIZE_URL: $DOCKERIZE_URL \ - && curl --silent --show-error --location --fail --retry 3 --output /usr/local/bin/dockerize $DOCKERIZE_URL \ - && chmod +x /usr/local/bin/dockerize \ - && dockerize --version - -# Install RubyGems -RUN mkdir -p "$GEM_HOME" && chmod -R 777 "$GEM_HOME" - -# Upgrade RubyGems and Bundler # Upgrading disabled until https://github.com/thoughtbot/appraisal/issues/162 is fixed -RUN gem update --system 3.3.26 -RUN gem install bundler -v '~> 2.3.26' -ENV BUNDLE_SILENCE_ROOT_WARNING 1 - -RUN mkdir /app -WORKDIR /app - -CMD ["/bin/sh"] diff --git a/.circleci/images/primary/Dockerfile-3.0.7 b/.circleci/images/primary/Dockerfile-3.0.7 deleted file mode 100644 index ca7b2f4a9c5..00000000000 --- a/.circleci/images/primary/Dockerfile-3.0.7 +++ /dev/null @@ -1,68 +0,0 @@ -# Note: See the "Publishing updates to images" note in ./README.md for how to publish new builds of this container image - -FROM ruby:3.0.7-bullseye - -# Make apt non-interactive -RUN echo 'APT::Get::Assume-Yes "true";' > /etc/apt/apt.conf.d/90circleci \ - && echo 'DPkg::Options "--force-confnew";' >> /etc/apt/apt.conf.d/90circleci - -ENV DEBIAN_FRONTEND=noninteractive - -# Install required packages -RUN set -ex; \ - apt-get update; \ - mkdir -p /usr/share/man/man1; \ - apt-get install -y --no-install-recommends \ - git mercurial xvfb \ - locales sudo openssh-client ca-certificates tar gzip parallel \ - net-tools netcat unzip zip bzip2 gnupg curl wget \ - tzdata rsync vim less jq; \ - rm -rf /var/lib/apt/lists/*; - -# Set timezone to UTC by default -RUN ln -sf /usr/share/zoneinfo/Etc/UTC /etc/localtime - -# Ensure sane locale (Uncomment `en_US.UTF-8` from `/etc/locale.gen` before running `locale-gen`) -RUN sed -i '/en_US.UTF-8/s/^# //g' /etc/locale.gen && locale-gen -ENV LANG en_US.UTF-8 -ENV LANGUAGE en_US:en - -# Install Docker -RUN set -ex \ - && export DOCKER_VERSION=$(curl --silent --fail --retry 3 https://download.docker.com/linux/static/stable/$(arch)/ | grep -o -e 'docker-[.0-9]*-ce\.tgz' | sort -r | head -n 1) \ - && DOCKER_URL="https://download.docker.com/linux/static/stable/$(arch)/${DOCKER_VERSION}" \ - && echo DOCKER_URL: $DOCKER_URL \ - && curl --silent --show-error --location --fail --retry 3 --output /tmp/docker.tgz "${DOCKER_URL}" \ - && ls -lha /tmp/docker.tgz \ - && tar -xz -C /tmp -f /tmp/docker.tgz \ - && mv /tmp/docker/* /usr/bin \ - && rm -rf /tmp/docker /tmp/docker.tgz \ - && which docker \ - && (docker version || true) - -# Install Docker Compose -RUN COMPOSE_URL="https://github.com/linuxserver/docker-docker-compose/releases/download/1.29.2-ls51/docker-compose-$(dpkg --print-architecture)" \ - && echo COMPOSE_URL: $COMPOSE_URL \ - && curl --silent --show-error --location --fail --retry 3 --output /usr/bin/docker-compose $COMPOSE_URL \ - && chmod +x /usr/bin/docker-compose \ - && docker-compose version - -# Install Dockerize -RUN DOCKERIZE_URL="https://github.com/powerman/dockerize/releases/download/v0.17.0/dockerize-$(uname -s | tr '[:upper:]' '[:lower:]')-$(arch | sed 's/aarch64/arm64/')" \ - && echo DOCKERIZE_URL: $DOCKERIZE_URL \ - && curl --silent --show-error --location --fail --retry 3 --output /usr/local/bin/dockerize $DOCKERIZE_URL \ - && chmod +x /usr/local/bin/dockerize \ - && dockerize --version - -# Install RubyGems -RUN mkdir -p "$GEM_HOME" && chmod -R 777 "$GEM_HOME" - -# Install a pinned RubyGems and Bundler -RUN gem update --system 3.3.26 -RUN gem install bundler:2.3.26 -ENV BUNDLE_SILENCE_ROOT_WARNING 1 - -RUN mkdir /app -WORKDIR /app - -CMD ["/bin/sh"] diff --git a/.circleci/images/primary/Dockerfile-3.1.6 b/.circleci/images/primary/Dockerfile-3.1.6 deleted file mode 100644 index bd064ab4784..00000000000 --- a/.circleci/images/primary/Dockerfile-3.1.6 +++ /dev/null @@ -1,68 +0,0 @@ -# Note: See the "Publishing updates to images" note in ./README.md for how to publish new builds of this container image - -FROM ruby:3.1.6-bookworm - -# Make apt non-interactive -RUN echo 'APT::Get::Assume-Yes "true";' > /etc/apt/apt.conf.d/90circleci \ - && echo 'DPkg::Options "--force-confnew";' >> /etc/apt/apt.conf.d/90circleci - -ENV DEBIAN_FRONTEND=noninteractive - -# Install required packages -RUN set -ex; \ - apt-get update; \ - mkdir -p /usr/share/man/man1; \ - apt-get install -y --no-install-recommends \ - git mercurial xvfb \ - locales sudo openssh-client ca-certificates tar gzip parallel \ - net-tools netcat-openbsd unzip zip bzip2 gnupg curl wget \ - tzdata rsync vim less jq; \ - rm -rf /var/lib/apt/lists/*; - -# Set timezone to UTC by default -RUN ln -sf /usr/share/zoneinfo/Etc/UTC /etc/localtime - -# Ensure sane locale (Uncomment `en_US.UTF-8` from `/etc/locale.gen` before running `locale-gen`) -RUN sed -i '/en_US.UTF-8/s/^# //g' /etc/locale.gen && locale-gen -ENV LANG en_US.UTF-8 -ENV LANGUAGE en_US:en - -# Install Docker -RUN set -ex \ - && export DOCKER_VERSION=$(curl --silent --fail --retry 3 https://download.docker.com/linux/static/stable/$(arch)/ | grep -o -e 'docker-[.0-9]*-ce\.tgz' | sort -r | head -n 1) \ - && DOCKER_URL="https://download.docker.com/linux/static/stable/$(arch)/${DOCKER_VERSION}" \ - && echo DOCKER_URL: $DOCKER_URL \ - && curl --silent --show-error --location --fail --retry 3 --output /tmp/docker.tgz "${DOCKER_URL}" \ - && ls -lha /tmp/docker.tgz \ - && tar -xz -C /tmp -f /tmp/docker.tgz \ - && mv /tmp/docker/* /usr/bin \ - && rm -rf /tmp/docker /tmp/docker.tgz \ - && which docker \ - && (docker version || true) - -# Install Docker Compose -RUN COMPOSE_URL="https://github.com/linuxserver/docker-docker-compose/releases/download/1.29.2-ls51/docker-compose-$(dpkg --print-architecture)" \ - && echo COMPOSE_URL: $COMPOSE_URL \ - && curl --silent --show-error --location --fail --retry 3 --output /usr/bin/docker-compose $COMPOSE_URL \ - && chmod +x /usr/bin/docker-compose \ - && docker-compose version - -# Install Dockerize -RUN DOCKERIZE_URL="https://github.com/powerman/dockerize/releases/download/v0.17.0/dockerize-$(uname -s | tr '[:upper:]' '[:lower:]')-$(arch | sed 's/aarch64/arm64/')" \ - && echo DOCKERIZE_URL: $DOCKERIZE_URL \ - && curl --silent --show-error --location --fail --retry 3 --output /usr/local/bin/dockerize $DOCKERIZE_URL \ - && chmod +x /usr/local/bin/dockerize \ - && dockerize --version - -# Install RubyGems -RUN mkdir -p "$GEM_HOME" && chmod -R 777 "$GEM_HOME" - -# Install a pinned RubyGems and Bundler -RUN gem update --system 3.3.26 -RUN gem install bundler:2.3.26 -ENV BUNDLE_SILENCE_ROOT_WARNING 1 - -RUN mkdir /app -WORKDIR /app - -CMD ["/bin/sh"] diff --git a/.circleci/images/primary/Dockerfile-3.2.4 b/.circleci/images/primary/Dockerfile-3.2.4 deleted file mode 100644 index 31b217f84f8..00000000000 --- a/.circleci/images/primary/Dockerfile-3.2.4 +++ /dev/null @@ -1,68 +0,0 @@ -# Note: See the "Publishing updates to images" note in ./README.md for how to publish new builds of this container image - -FROM ruby:3.2.4-bookworm - -# Make apt non-interactive -RUN echo 'APT::Get::Assume-Yes "true";' > /etc/apt/apt.conf.d/90circleci \ - && echo 'DPkg::Options "--force-confnew";' >> /etc/apt/apt.conf.d/90circleci - -ENV DEBIAN_FRONTEND=noninteractive - -# Install required packages -RUN set -ex; \ - apt-get update; \ - mkdir -p /usr/share/man/man1; \ - apt-get install -y --no-install-recommends \ - git mercurial xvfb \ - locales sudo openssh-client ca-certificates tar gzip parallel \ - net-tools netcat-openbsd unzip zip bzip2 gnupg curl wget \ - tzdata rsync vim less jq; \ - rm -rf /var/lib/apt/lists/*; - -# Set timezone to UTC by default -RUN ln -sf /usr/share/zoneinfo/Etc/UTC /etc/localtime - -# Ensure sane locale (Uncomment `en_US.UTF-8` from `/etc/locale.gen` before running `locale-gen`) -RUN sed -i '/en_US.UTF-8/s/^# //g' /etc/locale.gen && locale-gen -ENV LANG en_US.UTF-8 -ENV LANGUAGE en_US:en - -# Install Docker -RUN set -ex \ - && export DOCKER_VERSION=$(curl --silent --fail --retry 3 https://download.docker.com/linux/static/stable/$(arch)/ | grep -o -e 'docker-[.0-9]*-ce\.tgz' | sort -r | head -n 1) \ - && DOCKER_URL="https://download.docker.com/linux/static/stable/$(arch)/${DOCKER_VERSION}" \ - && echo DOCKER_URL: $DOCKER_URL \ - && curl --silent --show-error --location --fail --retry 3 --output /tmp/docker.tgz "${DOCKER_URL}" \ - && ls -lha /tmp/docker.tgz \ - && tar -xz -C /tmp -f /tmp/docker.tgz \ - && mv /tmp/docker/* /usr/bin \ - && rm -rf /tmp/docker /tmp/docker.tgz \ - && which docker \ - && (docker version || true) - -# Install Docker Compose -RUN COMPOSE_URL="https://github.com/linuxserver/docker-docker-compose/releases/download/1.29.2-ls51/docker-compose-$(dpkg --print-architecture)" \ - && echo COMPOSE_URL: $COMPOSE_URL \ - && curl --silent --show-error --location --fail --retry 3 --output /usr/bin/docker-compose $COMPOSE_URL \ - && chmod +x /usr/bin/docker-compose \ - && docker-compose version - -# Install Dockerize -RUN DOCKERIZE_URL="https://github.com/powerman/dockerize/releases/download/v0.17.0/dockerize-$(uname -s | tr '[:upper:]' '[:lower:]')-$(arch | sed 's/aarch64/arm64/')" \ - && echo DOCKERIZE_URL: $DOCKERIZE_URL \ - && curl --silent --show-error --location --fail --retry 3 --output /usr/local/bin/dockerize $DOCKERIZE_URL \ - && chmod +x /usr/local/bin/dockerize \ - && dockerize --version - -# Install RubyGems -RUN mkdir -p "$GEM_HOME" && chmod -R 777 "$GEM_HOME" - -# Install a pinned RubyGems and Bundler -RUN gem update --system 3.3.26 -RUN gem install bundler:2.3.26 -ENV BUNDLE_SILENCE_ROOT_WARNING 1 - -RUN mkdir /app -WORKDIR /app - -CMD ["/bin/sh"] diff --git a/.circleci/images/primary/Dockerfile-3.3.2 b/.circleci/images/primary/Dockerfile-3.3.2 deleted file mode 100644 index 69d96f4d469..00000000000 --- a/.circleci/images/primary/Dockerfile-3.3.2 +++ /dev/null @@ -1,68 +0,0 @@ -# Note: See the "Publishing updates to images" note in ./README.md for how to publish new builds of this container image - -FROM ruby:3.3.2-bookworm - -# Make apt non-interactive -RUN echo 'APT::Get::Assume-Yes "true";' > /etc/apt/apt.conf.d/90circleci \ - && echo 'DPkg::Options "--force-confnew";' >> /etc/apt/apt.conf.d/90circleci - -ENV DEBIAN_FRONTEND=noninteractive - -# Install required packages -RUN set -ex; \ - apt-get update; \ - mkdir -p /usr/share/man/man1; \ - apt-get install -y --no-install-recommends \ - git mercurial xvfb \ - locales sudo openssh-client ca-certificates tar gzip parallel \ - net-tools netcat-openbsd unzip zip bzip2 gnupg curl wget \ - tzdata rsync vim less jq; \ - rm -rf /var/lib/apt/lists/*; - -# Set timezone to UTC by default -RUN ln -sf /usr/share/zoneinfo/Etc/UTC /etc/localtime - -# Ensure sane locale (Uncomment `en_US.UTF-8` from `/etc/locale.gen` before running `locale-gen`) -RUN sed -i '/en_US.UTF-8/s/^# //g' /etc/locale.gen && locale-gen -ENV LANG en_US.UTF-8 -ENV LANGUAGE en_US:en - -# Install Docker -RUN set -ex \ - && export DOCKER_VERSION=$(curl --silent --fail --retry 3 https://download.docker.com/linux/static/stable/$(arch)/ | grep -o -e 'docker-[.0-9]*-ce\.tgz' | sort -r | head -n 1) \ - && DOCKER_URL="https://download.docker.com/linux/static/stable/$(arch)/${DOCKER_VERSION}" \ - && echo DOCKER_URL: $DOCKER_URL \ - && curl --silent --show-error --location --fail --retry 3 --output /tmp/docker.tgz "${DOCKER_URL}" \ - && ls -lha /tmp/docker.tgz \ - && tar -xz -C /tmp -f /tmp/docker.tgz \ - && mv /tmp/docker/* /usr/bin \ - && rm -rf /tmp/docker /tmp/docker.tgz \ - && which docker \ - && (docker version || true) - -# Install Docker Compose -RUN COMPOSE_URL="https://github.com/linuxserver/docker-docker-compose/releases/download/1.29.2-ls51/docker-compose-$(dpkg --print-architecture)" \ - && echo COMPOSE_URL: $COMPOSE_URL \ - && curl --silent --show-error --location --fail --retry 3 --output /usr/bin/docker-compose $COMPOSE_URL \ - && chmod +x /usr/bin/docker-compose \ - && docker-compose version - -# Install Dockerize -RUN DOCKERIZE_URL="https://github.com/powerman/dockerize/releases/download/v0.17.0/dockerize-$(uname -s | tr '[:upper:]' '[:lower:]')-$(arch | sed 's/aarch64/arm64/')" \ - && echo DOCKERIZE_URL: $DOCKERIZE_URL \ - && curl --silent --show-error --location --fail --retry 3 --output /usr/local/bin/dockerize $DOCKERIZE_URL \ - && chmod +x /usr/local/bin/dockerize \ - && dockerize --version - -# Install RubyGems -RUN mkdir -p "$GEM_HOME" && chmod -R 777 "$GEM_HOME" - -# Install a pinned RubyGems and Bundler -RUN gem update --system 3.3.26 -RUN gem install bundler:2.3.26 -ENV BUNDLE_SILENCE_ROOT_WARNING 1 - -RUN mkdir /app -WORKDIR /app - -CMD ["/bin/sh"] diff --git a/.circleci/images/primary/Dockerfile-3.4.0 b/.circleci/images/primary/Dockerfile-3.4.0 deleted file mode 100644 index 6a371a45075..00000000000 --- a/.circleci/images/primary/Dockerfile-3.4.0 +++ /dev/null @@ -1,67 +0,0 @@ -# Note: See the "Publishing updates to images" note in ./README.md for how to publish new builds of this container image - -FROM ruby:3.4.0-preview2 - -# Make apt non-interactive -RUN echo 'APT::Get::Assume-Yes "true";' > /etc/apt/apt.conf.d/90circleci \ - && echo 'DPkg::Options "--force-confnew";' >> /etc/apt/apt.conf.d/90circleci - -ENV DEBIAN_FRONTEND=noninteractive - -# Install required packages -RUN set -ex; \ - apt-get update; \ - mkdir -p /usr/share/man/man1; \ - apt-get install -y --no-install-recommends \ - git mercurial xvfb \ - locales sudo openssh-client ca-certificates tar gzip parallel \ - net-tools netcat-openbsd unzip zip bzip2 gnupg curl wget \ - tzdata rsync vim less jq; \ - rm -rf /var/lib/apt/lists/*; - -# Set timezone to UTC by default -RUN ln -sf /usr/share/zoneinfo/Etc/UTC /etc/localtime - -# Ensure sane locale (Uncomment `en_US.UTF-8` from `/etc/locale.gen` before running `locale-gen`) -RUN sed -i '/en_US.UTF-8/s/^# //g' /etc/locale.gen && locale-gen -ENV LANG en_US.UTF-8 -ENV LANGUAGE en_US:en - -# Install Docker -RUN set -ex \ - && export DOCKER_VERSION=$(curl --silent --fail --retry 3 https://download.docker.com/linux/static/stable/$(arch)/ | grep -o -e 'docker-[.0-9]*-ce\.tgz' | sort -r | head -n 1) \ - && DOCKER_URL="https://download.docker.com/linux/static/stable/$(arch)/${DOCKER_VERSION}" \ - && echo DOCKER_URL: $DOCKER_URL \ - && curl --silent --show-error --location --fail --retry 3 --output /tmp/docker.tgz "${DOCKER_URL}" \ - && ls -lha /tmp/docker.tgz \ - && tar -xz -C /tmp -f /tmp/docker.tgz \ - && mv /tmp/docker/* /usr/bin \ - && rm -rf /tmp/docker /tmp/docker.tgz \ - && which docker \ - && (docker version || true) - -# Install Docker Compose -RUN COMPOSE_URL="https://github.com/linuxserver/docker-docker-compose/releases/download/1.29.2-ls51/docker-compose-$(dpkg --print-architecture)" \ - && echo COMPOSE_URL: $COMPOSE_URL \ - && curl --silent --show-error --location --fail --retry 3 --output /usr/bin/docker-compose $COMPOSE_URL \ - && chmod +x /usr/bin/docker-compose \ - && docker-compose version - -# Install Dockerize -RUN DOCKERIZE_URL="https://github.com/powerman/dockerize/releases/download/v0.17.0/dockerize-$(uname -s | tr '[:upper:]' '[:lower:]')-$(arch | sed 's/aarch64/arm64/')" \ - && echo DOCKERIZE_URL: $DOCKERIZE_URL \ - && curl --silent --show-error --location --fail --retry 3 --output /usr/local/bin/dockerize $DOCKERIZE_URL \ - && chmod +x /usr/local/bin/dockerize \ - && dockerize --version - -# Install RubyGems -RUN mkdir -p "$GEM_HOME" && chmod -R 777 "$GEM_HOME" -# Install a pinned RubyGems and Bundler -RUN gem update --system 3.3.26 -RUN gem install bundler:2.3.26 -ENV BUNDLE_SILENCE_ROOT_WARNING 1 - -RUN mkdir /app -WORKDIR /app - -CMD ["/bin/sh"] diff --git a/.circleci/images/primary/Dockerfile-jruby-9.2.21.0 b/.circleci/images/primary/Dockerfile-jruby-9.2.21.0 deleted file mode 100644 index 39b025940da..00000000000 --- a/.circleci/images/primary/Dockerfile-jruby-9.2.21.0 +++ /dev/null @@ -1,108 +0,0 @@ -# Note: See the "Publishing updates to images" note in ./README.md for how to publish new builds of this container image - -FROM eclipse-temurin:8-jammy AS jruby-9.2.21.0-jre8 - -RUN apt-get update && apt-get install -y libc6-dev --no-install-recommends && rm -rf /var/lib/apt/lists/* - -ENV JRUBY_VERSION 9.2.21.0 -ENV JRUBY_SHA256 dbf05fca4f61bd7d5131d9b83c5f4d1a249213c474b82def37e82013969c8b8a -RUN mkdir /opt/jruby \ - && curl -fSL https://repo1.maven.org/maven2/org/jruby/jruby-dist/${JRUBY_VERSION}/jruby-dist-${JRUBY_VERSION}-bin.tar.gz -o /tmp/jruby.tar.gz \ - && echo "$JRUBY_SHA256 /tmp/jruby.tar.gz" | sha256sum -c - \ - && tar -zx --strip-components=1 -f /tmp/jruby.tar.gz -C /opt/jruby \ - && rm /tmp/jruby.tar.gz \ - && update-alternatives --install /usr/local/bin/ruby ruby /opt/jruby/bin/jruby 1 -ENV PATH /opt/jruby/bin:$PATH - -# skip installing gem documentation -RUN mkdir -p /opt/jruby/etc \ - && { \ - echo 'install: --no-document'; \ - echo 'update: --no-document'; \ - } >> /opt/jruby/etc/gemrc - -RUN gem install rake net-telnet xmlrpc - -# install things globally, for great justice -# and don't create ".bundle" in all our apps -ENV GEM_HOME /usr/local/bundle -ENV BUNDLE_BIN="$GEM_HOME/bin" \ - BUNDLE_SILENCE_ROOT_WARNING=1 \ - BUNDLE_APP_CONFIG="$GEM_HOME" -ENV PATH $BUNDLE_BIN:$PATH -RUN mkdir -p "$GEM_HOME" "$BUNDLE_BIN" \ - && chmod 777 "$GEM_HOME" "$BUNDLE_BIN" - -CMD [ "irb" ] - -FROM jruby-9.2.21.0-jre8 - -# Make apt non-interactive -RUN echo 'APT::Get::Assume-Yes "true";' > /etc/apt/apt.conf.d/90circleci \ - && echo 'DPkg::Options "--force-confnew";' >> /etc/apt/apt.conf.d/90circleci - -ENV DEBIAN_FRONTEND=noninteractive - -# Install required packages -RUN set -ex; \ - apt-get update; \ - mkdir -p /usr/share/man/man1; \ - apt-get install -y --no-install-recommends \ - git mercurial xvfb \ - locales sudo openssh-client ca-certificates tar gzip parallel \ - net-tools netcat unzip zip bzip2 gnupg curl wget \ - tzdata rsync vim less jq \ - build-essential \ - shared-mime-info; \ - rm -rf /var/lib/apt/lists/*; - -# Set timezone to UTC by default -RUN ln -sf /usr/share/zoneinfo/Etc/UTC /etc/localtime - -# Set language -RUN locale-gen en_US.UTF-8 -ENV LANG en_US.UTF-8 -ENV LANGUAGE en_US:en - -# Install Docker -RUN set -ex \ - && export DOCKER_VERSION=$(curl --silent --fail --retry 3 https://download.docker.com/linux/static/stable/$(arch)/ | grep -o -e 'docker-[.0-9]*-ce\.tgz' | sort -r | head -n 1) \ - && DOCKER_URL="https://download.docker.com/linux/static/stable/$(arch)/${DOCKER_VERSION}" \ - && echo DOCKER_URL: $DOCKER_URL \ - && curl --silent --show-error --location --fail --retry 3 --output /tmp/docker.tgz "${DOCKER_URL}" \ - && ls -lha /tmp/docker.tgz \ - && tar -xz -C /tmp -f /tmp/docker.tgz \ - && mv /tmp/docker/* /usr/bin \ - && rm -rf /tmp/docker /tmp/docker.tgz \ - && which docker \ - && (docker version || true) - -# Install Docker Compose -RUN COMPOSE_URL="https://github.com/linuxserver/docker-docker-compose/releases/download/1.29.2-ls51/docker-compose-$(dpkg --print-architecture)" \ - && echo COMPOSE_URL: $COMPOSE_URL \ - && curl --silent --show-error --location --fail --retry 3 --output /usr/bin/docker-compose $COMPOSE_URL \ - && chmod +x /usr/bin/docker-compose \ - && docker-compose version - -# Install Dockerize -RUN DOCKERIZE_URL="https://github.com/powerman/dockerize/releases/download/v0.17.0/dockerize-$(uname -s | tr '[:upper:]' '[:lower:]')-$(arch | sed 's/aarch64/arm64/')" \ - && echo DOCKERIZE_URL: $DOCKERIZE_URL \ - && curl --silent --show-error --location --fail --retry 3 --output /usr/local/bin/dockerize $DOCKERIZE_URL \ - && chmod +x /usr/local/bin/dockerize \ - && dockerize --version - -# Install RubyGems -RUN mkdir -p "$GEM_HOME" && chmod -R 777 "$GEM_HOME" - -# Install a pinned RubyGems and Bundler -RUN gem update --system 3.3.26 -RUN gem install bundler:2.3.26 -ENV BUNDLE_SILENCE_ROOT_WARNING 1 - -# Ensure JRuby is available when running "bash --login" -RUN echo "export PATH=/opt/jruby/bin:$BUNDLE_BIN:\$PATH" >> ~/.profile - -RUN mkdir /app -WORKDIR /app - -CMD ["/bin/sh"] diff --git a/.circleci/images/primary/Dockerfile-jruby-9.3.9.0 b/.circleci/images/primary/Dockerfile-jruby-9.3.9.0 deleted file mode 100644 index 7a4c9b6338d..00000000000 --- a/.circleci/images/primary/Dockerfile-jruby-9.3.9.0 +++ /dev/null @@ -1,108 +0,0 @@ -# Note: See the "Publishing updates to images" note in ./README.md for how to publish new builds of this container image - -FROM eclipse-temurin:11-jammy AS jruby-9.3.9.0-jre11 - -RUN apt-get update && apt-get install -y libc6-dev --no-install-recommends && rm -rf /var/lib/apt/lists/* - -ENV JRUBY_VERSION 9.3.9.0 -ENV JRUBY_SHA256 251e6dd8d1d2f82922c8c778d7857e1bef82fe5ca2cf77bc09356421d0b05ab8 -RUN mkdir /opt/jruby \ - && curl -fSL https://repo1.maven.org/maven2/org/jruby/jruby-dist/${JRUBY_VERSION}/jruby-dist-${JRUBY_VERSION}-bin.tar.gz -o /tmp/jruby.tar.gz \ - && echo "$JRUBY_SHA256 /tmp/jruby.tar.gz" | sha256sum -c - \ - && tar -zx --strip-components=1 -f /tmp/jruby.tar.gz -C /opt/jruby \ - && rm /tmp/jruby.tar.gz \ - && update-alternatives --install /usr/local/bin/ruby ruby /opt/jruby/bin/jruby 1 -ENV PATH /opt/jruby/bin:$PATH - -# skip installing gem documentation -RUN mkdir -p /opt/jruby/etc \ - && { \ - echo 'install: --no-document'; \ - echo 'update: --no-document'; \ - } >> /opt/jruby/etc/gemrc - -RUN gem install rake net-telnet xmlrpc - -# install things globally, for great justice -# and don't create ".bundle" in all our apps -ENV GEM_HOME /usr/local/bundle -ENV BUNDLE_BIN="$GEM_HOME/bin" \ - BUNDLE_SILENCE_ROOT_WARNING=1 \ - BUNDLE_APP_CONFIG="$GEM_HOME" -ENV PATH $BUNDLE_BIN:$PATH -RUN mkdir -p "$GEM_HOME" "$BUNDLE_BIN" \ - && chmod 777 "$GEM_HOME" "$BUNDLE_BIN" - -CMD [ "irb" ] - -FROM jruby-9.3.9.0-jre11 - -# Make apt non-interactive -RUN echo 'APT::Get::Assume-Yes "true";' > /etc/apt/apt.conf.d/90circleci \ - && echo 'DPkg::Options "--force-confnew";' >> /etc/apt/apt.conf.d/90circleci - -ENV DEBIAN_FRONTEND=noninteractive - -# Install required packages -RUN set -ex; \ - apt-get update; \ - mkdir -p /usr/share/man/man1; \ - apt-get install -y --no-install-recommends \ - git mercurial xvfb \ - locales sudo openssh-client ca-certificates tar gzip parallel \ - net-tools netcat unzip zip bzip2 gnupg curl wget \ - tzdata rsync vim less jq \ - build-essential \ - shared-mime-info; \ - rm -rf /var/lib/apt/lists/*; - -# Set timezone to UTC by default -RUN ln -sf /usr/share/zoneinfo/Etc/UTC /etc/localtime - -# Set language -RUN locale-gen en_US.UTF-8 -ENV LANG en_US.UTF-8 -ENV LANGUAGE en_US:en - -# Install Docker -RUN set -ex \ - && export DOCKER_VERSION=$(curl --silent --fail --retry 3 https://download.docker.com/linux/static/stable/$(arch)/ | grep -o -e 'docker-[.0-9]*-ce\.tgz' | sort -r | head -n 1) \ - && DOCKER_URL="https://download.docker.com/linux/static/stable/$(arch)/${DOCKER_VERSION}" \ - && echo DOCKER_URL: $DOCKER_URL \ - && curl --silent --show-error --location --fail --retry 3 --output /tmp/docker.tgz "${DOCKER_URL}" \ - && ls -lha /tmp/docker.tgz \ - && tar -xz -C /tmp -f /tmp/docker.tgz \ - && mv /tmp/docker/* /usr/bin \ - && rm -rf /tmp/docker /tmp/docker.tgz \ - && which docker \ - && (docker version || true) - -# Install Docker Compose -RUN COMPOSE_URL="https://github.com/linuxserver/docker-docker-compose/releases/download/1.29.2-ls51/docker-compose-$(dpkg --print-architecture)" \ - && echo COMPOSE_URL: $COMPOSE_URL \ - && curl --silent --show-error --location --fail --retry 3 --output /usr/bin/docker-compose $COMPOSE_URL \ - && chmod +x /usr/bin/docker-compose \ - && docker-compose version - -# Install Dockerize -RUN DOCKERIZE_URL="https://github.com/powerman/dockerize/releases/download/v0.17.0/dockerize-$(uname -s | tr '[:upper:]' '[:lower:]')-$(arch | sed 's/aarch64/arm64/')" \ - && echo DOCKERIZE_URL: $DOCKERIZE_URL \ - && curl --silent --show-error --location --fail --retry 3 --output /usr/local/bin/dockerize $DOCKERIZE_URL \ - && chmod +x /usr/local/bin/dockerize \ - && dockerize --version - -# Install RubyGems -RUN mkdir -p "$GEM_HOME" && chmod -R 777 "$GEM_HOME" - -# Install a pinned RubyGems and Bundler -RUN gem update --system 3.3.26 -RUN gem install bundler:2.3.26 -ENV BUNDLE_SILENCE_ROOT_WARNING 1 - -# Ensure JRuby is available when running "bash --login" -RUN echo "export PATH=/opt/jruby/bin:$BUNDLE_BIN:\$PATH" >> ~/.profile - -RUN mkdir /app -WORKDIR /app - -CMD ["/bin/sh"] diff --git a/.circleci/images/primary/Dockerfile-jruby-9.4.7.0 b/.circleci/images/primary/Dockerfile-jruby-9.4.7.0 deleted file mode 100644 index 87f44f22482..00000000000 --- a/.circleci/images/primary/Dockerfile-jruby-9.4.7.0 +++ /dev/null @@ -1,108 +0,0 @@ -# Note: See the "Publishing updates to images" note in ./README.md for how to publish new builds of this container image - -FROM eclipse-temurin:11-jammy AS jruby-9.4.7.0-jre11 - -RUN apt-get update && apt-get install -y libc6-dev --no-install-recommends && rm -rf /var/lib/apt/lists/* - -ENV JRUBY_VERSION 9.4.7.0 -ENV JRUBY_SHA256 f1c39f8257505300a528ff83fe4721fbe61a855abb25e3d27d52d43ac97a4d80 -RUN mkdir /opt/jruby \ - && curl -fSL https://repo1.maven.org/maven2/org/jruby/jruby-dist/${JRUBY_VERSION}/jruby-dist-${JRUBY_VERSION}-bin.tar.gz -o /tmp/jruby.tar.gz \ - && echo "$JRUBY_SHA256 /tmp/jruby.tar.gz" | sha256sum -c - \ - && tar -zx --strip-components=1 -f /tmp/jruby.tar.gz -C /opt/jruby \ - && rm /tmp/jruby.tar.gz \ - && update-alternatives --install /usr/local/bin/ruby ruby /opt/jruby/bin/jruby 1 -ENV PATH /opt/jruby/bin:$PATH - -# skip installing gem documentation -RUN mkdir -p /opt/jruby/etc \ - && { \ - echo 'install: --no-document'; \ - echo 'update: --no-document'; \ - } >> /opt/jruby/etc/gemrc - -RUN gem install rake net-telnet xmlrpc - -# install things globally, for great justice -# and don't create ".bundle" in all our apps -ENV GEM_HOME /usr/local/bundle -ENV BUNDLE_BIN="$GEM_HOME/bin" \ - BUNDLE_SILENCE_ROOT_WARNING=1 \ - BUNDLE_APP_CONFIG="$GEM_HOME" -ENV PATH $BUNDLE_BIN:$PATH -RUN mkdir -p "$GEM_HOME" "$BUNDLE_BIN" \ - && chmod 777 "$GEM_HOME" "$BUNDLE_BIN" - -CMD [ "irb" ] - -FROM jruby-9.4.7.0-jre11 - -# Make apt non-interactive -RUN echo 'APT::Get::Assume-Yes "true";' > /etc/apt/apt.conf.d/90circleci \ - && echo 'DPkg::Options "--force-confnew";' >> /etc/apt/apt.conf.d/90circleci - -ENV DEBIAN_FRONTEND=noninteractive - -# Install required packages -RUN set -ex; \ - apt-get update; \ - mkdir -p /usr/share/man/man1; \ - apt-get install -y --no-install-recommends \ - git mercurial xvfb \ - locales sudo openssh-client ca-certificates tar gzip parallel \ - net-tools netcat unzip zip bzip2 gnupg curl wget \ - tzdata rsync vim less jq \ - build-essential \ - shared-mime-info; \ - rm -rf /var/lib/apt/lists/*; - -# Set timezone to UTC by default -RUN ln -sf /usr/share/zoneinfo/Etc/UTC /etc/localtime - -# Set language -RUN locale-gen en_US.UTF-8 -ENV LANG en_US.UTF-8 -ENV LANGUAGE en_US:en - -# Install Docker -RUN set -ex \ - && export DOCKER_VERSION=$(curl --silent --fail --retry 3 https://download.docker.com/linux/static/stable/$(arch)/ | grep -o -e 'docker-[.0-9]*-ce\.tgz' | sort -r | head -n 1) \ - && DOCKER_URL="https://download.docker.com/linux/static/stable/$(arch)/${DOCKER_VERSION}" \ - && echo DOCKER_URL: $DOCKER_URL \ - && curl --silent --show-error --location --fail --retry 3 --output /tmp/docker.tgz "${DOCKER_URL}" \ - && ls -lha /tmp/docker.tgz \ - && tar -xz -C /tmp -f /tmp/docker.tgz \ - && mv /tmp/docker/* /usr/bin \ - && rm -rf /tmp/docker /tmp/docker.tgz \ - && which docker \ - && (docker version || true) - -# Install Docker Compose -RUN COMPOSE_URL="https://github.com/linuxserver/docker-docker-compose/releases/download/1.29.2-ls51/docker-compose-$(dpkg --print-architecture)" \ - && echo COMPOSE_URL: $COMPOSE_URL \ - && curl --silent --show-error --location --fail --retry 3 --output /usr/bin/docker-compose $COMPOSE_URL \ - && chmod +x /usr/bin/docker-compose \ - && docker-compose version - -# Install Dockerize -RUN DOCKERIZE_URL="https://github.com/powerman/dockerize/releases/download/v0.17.0/dockerize-$(uname -s | tr '[:upper:]' '[:lower:]')-$(arch | sed 's/aarch64/arm64/')" \ - && echo DOCKERIZE_URL: $DOCKERIZE_URL \ - && curl --silent --show-error --location --fail --retry 3 --output /usr/local/bin/dockerize $DOCKERIZE_URL \ - && chmod +x /usr/local/bin/dockerize \ - && dockerize --version - -# Install RubyGems -RUN mkdir -p "$GEM_HOME" && chmod -R 777 "$GEM_HOME" - -# Install a pinned RubyGems and Bundler -RUN gem update --system 3.3.26 -RUN gem install bundler:2.3.26 -ENV BUNDLE_SILENCE_ROOT_WARNING 1 - -# Ensure JRuby is available when running "bash --login" -RUN echo "export PATH=/opt/jruby/bin:$BUNDLE_BIN:\$PATH" >> ~/.profile - -RUN mkdir /app -WORKDIR /app - -CMD ["/bin/sh"] diff --git a/.circleci/images/primary/README.md b/.circleci/images/primary/README.md index e02c720f259..e781d8a4efe 100644 --- a/.circleci/images/primary/README.md +++ b/.circleci/images/primary/README.md @@ -1,30 +1,3 @@ # Dockerfiles used for testing and development -This folder contains Dockerfiles for all versions of Ruby used in the testing and development of dd-trace-rb. - -## Multi-arch images - -All images are able to be built for both `x86_64` (a.k.a `amd64`) and `aarch64` (a.k.a `arm64/v8`) Linux. - -Here's an example of manually building Ruby 3.1 images: - -```bash -# To build single-arch images locally (NEVER PUSH THESE!): -$ docker buildx build . --platform linux/x86_64 -f Dockerfile-3.1.1 -t ghcr.io/datadog/dd-trace-rb/ruby:3.1.1-dd -$ docker buildx build . --platform linux/aarch64 -f Dockerfile-3.1.1 -t ghcr.io/datadog/dd-trace-rb/ruby:3.1.1-dd - -# To build AND push multi-arch images (but DON'T DO THAT IN GENERAL, unless e.g CI is down): -$ docker buildx build . --platform linux/x86_64,linux/aarch64 -f Dockerfile-3.1.1 -t ghcr.io/datadog/dd-trace-rb/ruby:3.1.1-dd --push -``` - -## Publishing updates to images - -Currently, every `Dockerfile` variant in this folder is automatically built in CI, but importantly **the built images are not automatically published for use**. - -To publish changes to images, you'll need to: - -1. Open a PR with the change to the `Dockerfile`s -2. Check that the "Build Ruby" CI step passes for the PR -3. Merge the PR -4. **After merging the PR**, go to https://github.com/datadog/dd-trace-rb/actions/workflows/build-ruby.yml and manually run the workflow by clicking on **Run workflow** and make sure you pick the **Push images** option. -5. After the manually-ran workflow finishes, the new images will be available +Container images for Ruby are from: https://github.com/DataDog/images-rb diff --git a/.circleci/images/primary/binary_version b/.circleci/images/primary/binary_version index d1e85f890cb..27a69f601b0 100644 --- a/.circleci/images/primary/binary_version +++ b/.circleci/images/primary/binary_version @@ -1 +1 @@ -326 +327 diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 299975b6ccb..bc5dbba5f4c 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -13,9 +13,9 @@ /lib/datadog/opentelemetry/ @DataDog/tracing-ruby /lib/datadog/opentelemetry.rb @DataDog/tracing-ruby /lib-injection/ @DataDog/tracing-ruby -/lib/datadog/profiling/ @DataDog/profiling-rb -/lib/datadog/profiling.rb @DataDog/profiling-rb -/ext/ @DataDog/profiling-rb +/lib/datadog/profiling/ @DataDog/profiling-rb @DataDog/ruby-guild +/lib/datadog/profiling.rb @DataDog/profiling-rb @DataDog/ruby-guild +/ext/ @DataDog/profiling-rb @DataDog/ruby-guild # RBS signatures /sig/datadog/appsec/ @DataDog/asm-ruby @@ -25,8 +25,8 @@ /sig/datadog/tracing.rbs @DataDog/tracing-ruby /sig/datadog/opentelemetry/ @DataDog/tracing-ruby /sig/datadog/opentelemetry.rbs @DataDog/tracing-ruby -/sig/datadog/profiling/ @DataDog/profiling-rb -/sig/datadog/profiling.rbs @DataDog/profiling-rb +/sig/datadog/profiling/ @DataDog/profiling-rb @DataDog/ruby-guild +/sig/datadog/profiling.rbs @DataDog/profiling-rb @DataDog/ruby-guild # Specs /spec/datadog/appsec/ @DataDog/asm-ruby @@ -35,5 +35,5 @@ /spec/datadog/tracing_spec.rb @DataDog/tracing-ruby /spec/datadog/opentelemetry/ @DataDog/tracing-ruby /spec/datadog/opentelemetry_spec.rb @DataDog/tracing-ruby -/spec/datadog/profiling/ @DataDog/profiling-rb -/spec/datadog/profiling_spec.rb @DataDog/profiling-rb +/spec/datadog/profiling/ @DataDog/profiling-rb @DataDog/ruby-guild +/spec/datadog/profiling_spec.rb @DataDog/profiling-rb @DataDog/ruby-guild diff --git a/.github/workflows/build-ruby.yml b/.github/workflows/build-ruby.yml deleted file mode 100644 index 497a8d32e72..00000000000 --- a/.github/workflows/build-ruby.yml +++ /dev/null @@ -1,123 +0,0 @@ -name: Build Ruby - -on: - workflow_dispatch: - inputs: - push: - description: Push images - required: true - type: boolean - default: true - push: - branches: - - "**" - -env: - REGISTRY: ghcr.io - -jobs: - build: - strategy: - fail-fast: false - matrix: - include: - - engine: ruby - version: 2.5.9 - dockerfile: Dockerfile-2.5.9 - - engine: ruby - version: 2.6.10 - dockerfile: Dockerfile-2.6.10 - - engine: ruby - version: 2.7.8 - dockerfile: Dockerfile-2.7.8 - - engine: ruby - version: 3.0.7 - dockerfile: Dockerfile-3.0.7 - - engine: ruby - version: 3.1.6 - dockerfile: Dockerfile-3.1.6 - - engine: ruby - version: 3.2.4 - dockerfile: Dockerfile-3.2.4 - - engine: ruby - version: 3.3.2 - dockerfile: Dockerfile-3.3.2 - - engine: ruby - version: 3.4.0 - dockerfile: Dockerfile-3.4.0 - # ADD NEW RUBIES HERE - - engine: jruby - version: 9.2.21.0 - dockerfile: Dockerfile-jruby-9.2.21.0 - - engine: jruby - version: 9.3.9.0 - dockerfile: Dockerfile-jruby-9.3.9.0 - - engine: jruby - version: 9.4.7.0 - dockerfile: Dockerfile-jruby-9.4.7.0 - runs-on: ubuntu-latest - name: Build (${{ matrix.engine }} ${{ matrix.version }}) - permissions: - contents: read - packages: write - steps: - - name: Checkout - uses: actions/checkout@v4 - - # Using docker-container engine enables advanced buildx features - - name: Set up Docker container engine - run: | - docker buildx create --name=container --driver=docker-container --use --bootstrap - - # First, build image for x86_64 as it will fail fast - # - # Tagging is necessary to reference the image for the testing step - # Tagging is done separately to avoid interfrence with caching - - name: Build single-arch image (x86_64) - run: | - docker buildx build . --builder=container --cache-from=type=registry,ref=${{ env.REGISTRY }}/datadog/dd-trace-rb/${{ matrix.engine }}:${{ matrix.version }}-dd --output=type=image,push=false --platform linux/x86_64 -f ${{ matrix.dockerfile }} - working-directory: .circleci/images/primary - - name: Tag single-arch image (x86_64) - run: | - docker buildx build . --builder=container --cache-from=type=registry,ref=${{ env.REGISTRY }}/datadog/dd-trace-rb/${{ matrix.engine }}:${{ matrix.version }}-dd --load --platform linux/x86_64 -f ${{ matrix.dockerfile }} --tag ${{ env.REGISTRY }}/datadog/dd-trace-rb/${{ matrix.engine }}:${{ matrix.version }}-dd - working-directory: .circleci/images/primary - - name: Test single-arch image (x86_64) - run: | - docker run --platform linux/x86_64 --rm ${{ env.REGISTRY }}/datadog/dd-trace-rb/${{ matrix.engine }}:${{ matrix.version }}-dd ruby -e 'puts RUBY_DESCRIPTION' - docker run --platform linux/x86_64 --rm ${{ env.REGISTRY }}/datadog/dd-trace-rb/${{ matrix.engine }}:${{ matrix.version }}-dd gem --version - docker run --platform linux/x86_64 --rm ${{ env.REGISTRY }}/datadog/dd-trace-rb/${{ matrix.engine }}:${{ matrix.version }}-dd bundle --version - - # Then, build image for aarch64 which, being emulated under qemu, is slower - # - # Tagging is necessary to reference the image for the testing step - # Tagging is done separately to avoid interfrence with caching - # Start by enabling qemu for aarch64 - - name: Enable aarch64 emulation (x86_64) - run: | - docker run --privileged --rm tonistiigi/binfmt --install arm64 - - name: Build single-arch image (aarch64) - run: | - docker buildx build . --builder=container --cache-from=type=registry,ref=${{ env.REGISTRY }}/datadog/dd-trace-rb/${{ matrix.engine }}:${{ matrix.version }}-dd --output=type=image,push=false --platform linux/aarch64 -f ${{ matrix.dockerfile }} - working-directory: .circleci/images/primary - - name: Tag single-arch image (aarch64) - run: | - docker buildx build . --builder=container --cache-from=type=registry,ref=${{ env.REGISTRY }}/datadog/dd-trace-rb/${{ matrix.engine }}:${{ matrix.version }}-dd --load --platform linux/aarch64 -f ${{ matrix.dockerfile }} --tag ${{ env.REGISTRY }}/datadog/dd-trace-rb/${{ matrix.engine }}:${{ matrix.version }}-dd - working-directory: .circleci/images/primary - - name: Test single-arch image (aarch64) - run: | - docker run --platform linux/aarch64 --rm ${{ env.REGISTRY }}/datadog/dd-trace-rb/${{ matrix.engine }}:${{ matrix.version }}-dd ruby -e 'puts RUBY_DESCRIPTION' - docker run --platform linux/aarch64 --rm ${{ env.REGISTRY }}/datadog/dd-trace-rb/${{ matrix.engine }}:${{ matrix.version }}-dd gem --version - docker run --platform linux/aarch64 --rm ${{ env.REGISTRY }}/datadog/dd-trace-rb/${{ matrix.engine }}:${{ matrix.version }}-dd bundle --version - - # Finally, assemble multi-arch image for a combined push to the registry - # - # This reruns docker build but layers are in the cache, so it's fast - - name: Log in to the Container Registry - if: ${{ inputs.push }} - run: | - echo ${{ secrets.GITHUB_TOKEN }} | docker login ${{ env.REGISTRY }} -u ${{ github.actor }} --password-stdin - - name: Build multi-arch image (x86_64, aarch64) - if: ${{ inputs.push }} - run: | - docker buildx build . --builder=container --cache-from=type=registry,ref=${{ env.REGISTRY }}/datadog/dd-trace-rb/${{ matrix.engine }}:${{ matrix.version }}-dd --output=type=image,push=true --build-arg BUILDKIT_INLINE_CACHE=1 --platform linux/x86_64,linux/aarch64 -f ${{ matrix.dockerfile }} --tag ${{ env.REGISTRY }}/datadog/dd-trace-rb/${{ matrix.engine }}:${{ matrix.version }}-dd - working-directory: .circleci/images/primary diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index e8f10f9cfe9..d3d290b41fe 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -1,20 +1,27 @@ name: Check on: push: - branches: [ '**' ] - pull_request: - # The branches below must be a subset of the branches above - branches: [ '**' ] + jobs: + lint: + runs-on: ubuntu-latest + container: + image: ghcr.io/datadog/images-rb/engines/ruby:3.2 + steps: + - uses: actions/checkout@v4 + - name: Install dependencies + run: bundle install + - run: bundle exec rake rubocop standard + check: name: Check types - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest + container: + image: ghcr.io/datadog/images-rb/engines/ruby:3.2 steps: - uses: actions/checkout@v4 - - uses: ruby/setup-ruby@v1 - with: - ruby-version: '3.2' - bundler-cache: true # runs 'bundle install' and caches installed gems automatically + - name: Install dependencies + run: bundle install - name: Check for stale signature files run: bundle exec rake rbs:stale - name: Check for missing signature files diff --git a/.github/workflows/system-tests.yml b/.github/workflows/system-tests.yml index 3b9ea847e79..5bbd2e60a3f 100644 --- a/.github/workflows/system-tests.yml +++ b/.github/workflows/system-tests.yml @@ -12,8 +12,8 @@ env: REGISTRY: ghcr.io REPO: ghcr.io/datadog/dd-trace-rb ST_REF: main - FORCE_TESTS: -F tests/appsec/test_asm_standalone.py - FORCE_TESTS_SCENARIO: APPSEC_STANDALONE + FORCE_TESTS: + FORCE_TESTS_SCENARIO: jobs: build-harness: diff --git a/.github/workflows/test-macos.yaml b/.github/workflows/test-macos.yaml index ac43afc1075..ef24498f43f 100644 --- a/.github/workflows/test-macos.yaml +++ b/.github/workflows/test-macos.yaml @@ -21,6 +21,7 @@ jobs: - '3.1' - '3.2' - '3.3' + - '3.4' # ADD NEW RUBIES HERE name: Test (${{ matrix.os }}, ${{ matrix.ruby }}) runs-on: ${{ matrix.os }} @@ -40,5 +41,9 @@ jobs: ruby-version: ${{ matrix.ruby }} rubygems: 3.3.26 bundler: 2.3.26 # needed to fix issue with steep on Ruby 3.0/3.1 + # Specify gem version for 3.4 because default version (3.6.0.dev) + # leads to an incorrect gem root path + - if: ${{ matrix.ruby == '3.3' || matrix.ruby == '3.4' }} + run: gem update --system 3.5.21 - run: bundle install - run: bundle exec rake spec:main diff --git a/.github/workflows/test-memory-leaks.yaml b/.github/workflows/test-memory-leaks.yaml index a80a55da14d..bc7ef885769 100644 --- a/.github/workflows/test-memory-leaks.yaml +++ b/.github/workflows/test-memory-leaks.yaml @@ -14,20 +14,10 @@ jobs: - run: sudo apt-get update && (sudo apt-get install -y valgrind || sleep 5 && sudo apt-get install -y valgrind) && valgrind --version - run: bundle exec rake compile spec:profiling:memcheck test-asan: - # Temporarily disabled on 2024-09-17 until ruby-asan builds are available again on - # https://github.com/ruby/ruby-dev-builder/releases - if: false runs-on: ubuntu-24.04 steps: - uses: actions/checkout@v4 - # We're using a fork of ruby/setup-ruby because the "asan" tool is built into the clang compiler toolchain, and - # needs Ruby to be built with a special configuration. - # - # The special configuration is not yet available in the upstream `ruby/setup-ruby` github action, so I needed to - # fork it and push a small tweak to make it available. - # - # (The Ruby builds were added in https://github.com/ruby/ruby-dev-builder/pull/10 ). - - uses: datadog/setup-ruby@0c7206d6db81faf999795ceebfac00d164298bd5 + - uses: ruby/setup-ruby@v1 with: ruby-version: asan bundler-cache: true # runs 'bundle install' and caches installed gems automatically diff --git a/.github/workflows/test-yjit.yaml b/.github/workflows/test-yjit.yaml index b9ce09fbda3..5b0a6c4809f 100644 --- a/.github/workflows/test-yjit.yaml +++ b/.github/workflows/test-yjit.yaml @@ -10,6 +10,7 @@ jobs: ruby: - '3.2' - '3.3' + - '3.4' # ADD NEW RUBIES HERE rubyopt: - '--yjit' diff --git a/.gitlab/benchmarks.yml b/.gitlab/benchmarks.yml index fb0d18f3043..bd5bf1dbbea 100644 --- a/.gitlab/benchmarks.yml +++ b/.gitlab/benchmarks.yml @@ -104,16 +104,6 @@ only-profiling-heap: DD_PROFILING_EXPERIMENTAL_HEAP_ENABLED: "true" ADD_TO_GEMFILE: "gem 'datadog', github: 'datadog/dd-trace-rb', ref: '$CI_COMMIT_SHA'" -only-profiling-heap-clean-after-gc: - extends: .benchmarks - variables: - DD_BENCHMARKS_CONFIGURATION: only-profiling - DD_PROFILING_ENABLED: "true" - DD_PROFILING_ALLOCATION_ENABLED: "true" - DD_PROFILING_EXPERIMENTAL_HEAP_ENABLED: "true" - DD_PROFILING_HEAP_CLEAN_AFTER_GC_ENABLED: "true" - ADD_TO_GEMFILE: "gem 'datadog', github: 'datadog/dd-trace-rb', ref: '$CI_COMMIT_SHA'" - only-profiling-gvl: extends: .benchmarks variables: diff --git a/CHANGELOG.md b/CHANGELOG.md index d2628a80ec3..ab5215bf856 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,9 +2,33 @@ ## [Unreleased] +## [2.6.0] - 2024-11-06 + +### Changed + +* Core: Upgrade to libdatadog 14.0 ([#4065][]) + +### Fixed + +* AppSec: Remove unintentional libddwaf require ([#4078][]) + +## [2.5.0] - 2024-11-05 + ### Added -* AppSec: Add Experimental Standalone AppSec Threats billing ([#3965][]) +* Performance: Profiling: Add setting to lower heap profiling memory use/latency by cleaning up young objects after Ruby GC ([#4020][]) + +### Changed + +* Core: Replace the `debase-ruby_core_source` gem with the `datadog-ruby_core_source` ([#4014][]) +* Core: Upgrade to `libdatadog` 13.1 ([#3997][]) + +### Fixed + +* Fix `undefined method` error for Rails runner ([#3996][]) +* Apply version tag only to spans that use the global/default service name ([#4027][]) +* Ensure UDS takes precedence over HTTP when both Agent configurations defined ([#4024][]) +* Remove duplicate leading slash in resource name for Grape routes ([#4033][]) ## [2.4.0] - 2024-10-11 @@ -2989,7 +3013,9 @@ 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.4.0...master +[Unreleased]: https://github.com/DataDog/dd-trace-rb/compare/v2.6.0...master +[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 [2.4.0]: https://github.com/DataDog/dd-trace-rb/compare/v2.3.0...v2.4.0 [2.3.0]: https://github.com/DataDog/dd-trace-rb/compare/v2.2.0...v2.3.0 [2.2.0]: https://github.com/DataDog/dd-trace-rb/compare/v2.1.0...v2.2.0 @@ -4423,6 +4449,15 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.3.0...v0.3.1 [#3969]: https://github.com/DataDog/dd-trace-rb/issues/3969 [#3970]: https://github.com/DataDog/dd-trace-rb/issues/3970 [#3984]: https://github.com/DataDog/dd-trace-rb/issues/3984 +[#3996]: https://github.com/DataDog/dd-trace-rb/issues/3996 +[#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 +[#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 +[#4065]: https://github.com/DataDog/dd-trace-rb/issues/4065 +[#4078]: https://github.com/DataDog/dd-trace-rb/issues/4078 [@AdrianLC]: https://github.com/AdrianLC [@Azure7111]: https://github.com/Azure7111 [@BabyGroot]: https://github.com/BabyGroot diff --git a/Gemfile b/Gemfile index 43473c3b13c..9ffe114961e 100644 --- a/Gemfile +++ b/Gemfile @@ -27,7 +27,7 @@ else end gem 'rake', '>= 10.5' gem 'rake-compiler', '~> 1.1', '>= 1.1.1' # To compile native extensions -gem 'rspec', '~> 3.12' +gem 'rspec', '~> 3.13' gem 'rspec-collection_matchers', '~> 1.1' gem 'rspec-wait', '~> 0' diff --git a/Rakefile b/Rakefile index 652e5c245bd..aa67152a835 100644 --- a/Rakefile +++ b/Rakefile @@ -59,7 +59,8 @@ namespace :test do command = if appraisal_group.empty? "bundle exec rake #{spec_task}" else - "bundle exec appraisal #{ruby_runtime}-#{appraisal_group} rake #{spec_task}" + gemfile = File.join(File.dirname(__FILE__), 'gemfiles', "#{ruby_runtime}-#{appraisal_group}.gemfile".tr('-', '_')) + "env BUNDLE_GEMFILE=#{gemfile} bundle exec rake #{spec_task}" end command += "'[#{spec_arguments}]'" if spec_arguments diff --git a/appraisal/ruby-3.4.rb b/appraisal/ruby-3.4.rb index 4c0cf60bd99..43a4e1eb122 100644 --- a/appraisal/ruby-3.4.rb +++ b/appraisal/ruby-3.4.rb @@ -125,6 +125,9 @@ gem 'sneakers', '>= 2.12.0' gem 'sucker_punch' gem 'que', '>= 1.0.0' + + # When Rack 3+ is used, we need rackup. + gem 'rackup' end [ diff --git a/datadog.gemspec b/datadog.gemspec index 53cf187106b..15f568e68b5 100644 --- a/datadog.gemspec +++ b/datadog.gemspec @@ -69,7 +69,7 @@ Gem::Specification.new do |spec| # When updating the version here, please also update the version in `libdatadog_extconf_helpers.rb` # (and yes we have a test for it) - spec.add_dependency 'libdatadog', '~> 13.1.0.1.0' + spec.add_dependency 'libdatadog', '~> 14.1.0.1.0' spec.extensions = [ 'ext/datadog_profiling_native_extension/extconf.rb', diff --git a/docker-compose.yml b/docker-compose.yml index a87492ea8da..fc39811f1ff 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,6 +1,7 @@ services: tracer-2.5: - image: ghcr.io/datadog/dd-trace-rb/ruby:2.5.9-dd + image: ghcr.io/datadog/images-rb/engines/ruby:2.5 + working_dir: /app command: /bin/bash depends_on: &common-depends-on - ddagent @@ -37,7 +38,8 @@ services: - bundle-2.5:/usr/local/bundle - "ddagent_var_run:${TEST_DDAGENT_VAR_RUN}" tracer-2.6: - image: ghcr.io/datadog/dd-trace-rb/ruby:2.6.10-dd + image: ghcr.io/datadog/images-rb/engines/ruby:2.6 + working_dir: /app command: /bin/bash depends_on: *common-depends-on env_file: ./.env @@ -52,7 +54,8 @@ services: - bundle-2.6:/usr/local/bundle - "ddagent_var_run:${TEST_DDAGENT_VAR_RUN}" tracer-2.7: - image: ghcr.io/datadog/dd-trace-rb/ruby:2.7.6-dd + image: ghcr.io/datadog/images-rb/engines/ruby:2.7 + working_dir: /app command: /bin/bash depends_on: *common-depends-on env_file: ./.env @@ -67,7 +70,8 @@ services: - bundle-2.7:/usr/local/bundle - "ddagent_var_run:${TEST_DDAGENT_VAR_RUN}" tracer-3.0: - image: ghcr.io/datadog/dd-trace-rb/ruby:3.0.4-dd + image: ghcr.io/datadog/images-rb/engines/ruby:3.0 + working_dir: /app command: /bin/bash depends_on: *common-depends-on env_file: ./.env @@ -82,7 +86,8 @@ services: - bundle-3.0:/usr/local/bundle - "ddagent_var_run:${TEST_DDAGENT_VAR_RUN}" tracer-3.1: - image: ghcr.io/datadog/dd-trace-rb/ruby:3.1.2-dd + image: ghcr.io/datadog/images-rb/engines/ruby:3.1 + working_dir: /app command: /bin/bash depends_on: *common-depends-on env_file: ./.env @@ -97,7 +102,8 @@ services: - bundle-3.1:/usr/local/bundle - "ddagent_var_run:${TEST_DDAGENT_VAR_RUN}" tracer-3.2: - image: ghcr.io/datadog/dd-trace-rb/ruby:3.2.0-dd + image: ghcr.io/datadog/images-rb/engines/ruby:3.2 + working_dir: /app command: /bin/bash depends_on: *common-depends-on env_file: ./.env @@ -112,7 +118,8 @@ services: - bundle-3.2:/usr/local/bundle - "ddagent_var_run:${TEST_DDAGENT_VAR_RUN}" tracer-3.3: - image: ghcr.io/datadog/dd-trace-rb/ruby:3.3.0-dd + image: ghcr.io/datadog/images-rb/engines/ruby:3.3 + working_dir: /app command: /bin/bash depends_on: *common-depends-on env_file: ./.env @@ -127,7 +134,8 @@ services: - bundle-3.3:/usr/local/bundle - "ddagent_var_run:${TEST_DDAGENT_VAR_RUN}" tracer-3.4: - image: ghcr.io/datadog/dd-trace-rb/ruby:3.4.0-dd + image: ghcr.io/datadog/images-rb/engines/ruby:3.4 + working_dir: /app command: /bin/bash depends_on: *common-depends-on env_file: ./.env @@ -143,7 +151,8 @@ services: - "ddagent_var_run:${TEST_DDAGENT_VAR_RUN}" # ADD NEW RUBIES HERE tracer-jruby-9.2: - image: ghcr.io/datadog/dd-trace-rb/jruby:9.2.21.0-dd + image: ghcr.io/datadog/images-rb/engines/jruby:9.2 + working_dir: /app command: /bin/bash depends_on: *common-depends-on env_file: ./.env @@ -157,7 +166,8 @@ services: - bundle-jruby-9.2:/usr/local/bundle - "ddagent_var_run:${TEST_DDAGENT_VAR_RUN}" tracer-jruby-9.3: - image: ghcr.io/datadog/dd-trace-rb/jruby:9.3.9.0-dd + image: ghcr.io/datadog/images-rb/engines/jruby:9.3 + working_dir: /app command: /bin/bash depends_on: *common-depends-on env_file: ./.env @@ -171,7 +181,8 @@ services: - bundle-jruby-9.3:/usr/local/bundle - "ddagent_var_run:${TEST_DDAGENT_VAR_RUN}" tracer-jruby-9.4: - image: ghcr.io/datadog/dd-trace-rb/jruby:9.4.7.0-dd + image: ghcr.io/datadog/images-rb/engines/jruby:9.4 + working_dir: /app command: /bin/bash depends_on: *common-depends-on env_file: ./.env diff --git a/docs/DevelopmentGuide.md b/docs/DevelopmentGuide.md index 458f2883536..6b21fa33902 100644 --- a/docs/DevelopmentGuide.md +++ b/docs/DevelopmentGuide.md @@ -105,6 +105,24 @@ TEST_METADATA = { } ``` +**Using appraisal** + +`appraisal` command should only be used to update gemfiles in `gemfiles/` +and install dependencies. It should not be used to run tests, since it does not +work in all configurations. To run the tests, use: + +```sh +env BUNDLE_GEMFILE=gemfiles/#{ruby_runtime}_#{appraisal_group}.gemfile rake #{spec_task} +``` + +Note that the file names use underscores while appraisal group and +configuration definitions use dashes. The conversion could be performed as +follows: + +```sh +env BUNDLE_GEMFILE=gemfiles/#{ruby_runtime.tr('-', '_')}_#{appraisal_group.tr('-', '_')}.gemfile rake #{spec_task} +``` + **Working with appraisal groups** Checkout [Apppraisal](https://github.com/thoughtbot/appraisal) to learn the basics. diff --git a/ext/libdatadog_api/crashtracker.c b/ext/libdatadog_api/crashtracker.c index 82c1efc1a84..cffee2768ec 100644 --- a/ext/libdatadog_api/crashtracker.c +++ b/ext/libdatadog_api/crashtracker.c @@ -58,21 +58,21 @@ static VALUE _native_start_or_update_on_fork(int argc, VALUE *argv, DDTRACE_UNUS ddog_crasht_Config config = { .additional_files = {}, - // The Ruby VM already uses an alt stack to detect stack overflows so the crash handler must not overwrite it. + // @ivoanjo: The Ruby VM already uses an alt stack to detect stack overflows. // - // @ivoanjo: Specifically, with `create_alt_stack = true` I saw a segfault, such as Ruby 2.6's bug with + // In libdatadog < 14 with `create_alt_stack = true` I saw a segfault, such as Ruby 2.6's bug with // "Process.detach(fork { exit! }).instance_variable_get(:@foo)" being turned into a // "-e:1:in `instance_variable_get': stack level too deep (SystemStackError)" by Ruby. - // // The Ruby crash handler also seems to get confused when this option is enabled and // "Process.kill('SEGV', Process.pid)" gets run. + // + // This actually changed in libdatadog 14, so I could see no issues with `create_alt_stack = true`, but not + // overridding what Ruby set up seems a saner default to keep anyway. .create_alt_stack = false, + .use_alt_stack = true, .endpoint = endpoint, .resolve_frames = DDOG_CRASHT_STACKTRACE_COLLECTION_ENABLED_WITH_SYMBOLS_IN_RECEIVER, - .timeout_secs = FIX2INT(upload_timeout_seconds), - // Waits for crash tracker to finish reporting the issue before letting the Ruby process die; see - // https://github.com/DataDog/libdatadog/pull/477 for details - .wait_for_receiver = true, + .timeout_ms = FIX2INT(upload_timeout_seconds) * 1000, }; ddog_crasht_Metadata metadata = { @@ -97,7 +97,7 @@ static VALUE _native_start_or_update_on_fork(int argc, VALUE *argv, DDTRACE_UNUS ddog_crasht_Result result = action == start_action ? - ddog_crasht_init_with_receiver(config, receiver_config, metadata) : + ddog_crasht_init(config, receiver_config, metadata) : ddog_crasht_update_on_fork(config, receiver_config, metadata); // Clean up before potentially raising any exceptions diff --git a/ext/libdatadog_extconf_helpers.rb b/ext/libdatadog_extconf_helpers.rb index ad9cf4f2e6b..2fc97bd73e1 100644 --- a/ext/libdatadog_extconf_helpers.rb +++ b/ext/libdatadog_extconf_helpers.rb @@ -8,7 +8,7 @@ module Datadog module LibdatadogExtconfHelpers # Used to make sure the correct gem version gets loaded, as extconf.rb does not get run with "bundle exec" and thus # may see multiple libdatadog versions. See https://github.com/DataDog/dd-trace-rb/pull/2531 for the horror story. - LIBDATADOG_VERSION = '~> 13.1.0.1.0' + LIBDATADOG_VERSION = '~> 14.1.0.1.0' # Used as an workaround for a limitation with how dynamic linking works in environments where the datadog gem and # libdatadog are moved after the extension gets compiled. diff --git a/gemfiles/jruby_9.2_activesupport.gemfile b/gemfiles/jruby_9.2_activesupport.gemfile index 02cd2de6723..b2fec37cec9 100644 --- a/gemfiles/jruby_9.2_activesupport.gemfile +++ b/gemfiles/jruby_9.2_activesupport.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_activesupport.gemfile.lock b/gemfiles/jruby_9.2_activesupport.gemfile.lock index 340045b82fb..b32a83ceecc 100644 --- a/gemfiles/jruby_9.2_activesupport.gemfile.lock +++ b/gemfiles/jruby_9.2_activesupport.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -102,7 +102,7 @@ GEM addressable (>= 2.4) jsonapi-renderer (0.2.2) king_konf (1.0.1) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) lograge (0.13.0) @@ -165,21 +165,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -233,7 +233,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_aws.gemfile b/gemfiles/jruby_9.2_aws.gemfile index 6fbba5ab5f7..758157fa434 100644 --- a/gemfiles/jruby_9.2_aws.gemfile +++ b/gemfiles/jruby_9.2_aws.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_aws.gemfile.lock b/gemfiles/jruby_9.2_aws.gemfile.lock index 3f757ebe027..42eda933fa1 100644 --- a/gemfiles/jruby_9.2_aws.gemfile.lock +++ b/gemfiles/jruby_9.2_aws.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -1463,7 +1463,7 @@ GEM jmespath (1.6.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -1482,21 +1482,21 @@ GEM rake-compiler (1.2.5) rake rexml (3.2.6) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -1541,7 +1541,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (= 3.2.6) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_contrib.gemfile b/gemfiles/jruby_9.2_contrib.gemfile index ddab7b0be38..f0ecd1e6a82 100644 --- a/gemfiles/jruby_9.2_contrib.gemfile +++ b/gemfiles/jruby_9.2_contrib.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 12.3" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_contrib.gemfile.lock b/gemfiles/jruby_9.2_contrib.gemfile.lock index 2a531495552..028d2163ec0 100644 --- a/gemfiles/jruby_9.2_contrib.gemfile.lock +++ b/gemfiles/jruby_9.2_contrib.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -50,7 +50,7 @@ GEM concurrent-ruby (~> 1.0) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -92,21 +92,21 @@ GEM strscan (>= 3.0.9) roda (3.71.0) rack - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -180,7 +180,7 @@ DEPENDENCIES resque rexml (>= 3.2.7) roda (>= 2.0.0) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_contrib_old.gemfile b/gemfiles/jruby_9.2_contrib_old.gemfile index 1ed13438eae..6726034a5fe 100644 --- a/gemfiles/jruby_9.2_contrib_old.gemfile +++ b/gemfiles/jruby_9.2_contrib_old.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_contrib_old.gemfile.lock b/gemfiles/jruby_9.2_contrib_old.gemfile.lock index 8ba5c2b941c..a7721ccb1fc 100644 --- a/gemfiles/jruby_9.2_contrib_old.gemfile.lock +++ b/gemfiles/jruby_9.2_contrib_old.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -46,7 +46,7 @@ GEM hashdiff (1.0.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -74,21 +74,21 @@ GEM redis (3.3.5) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -134,7 +134,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (< 4) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_core_old.gemfile b/gemfiles/jruby_9.2_core_old.gemfile index 7766c6b7872..0e131f9abd8 100644 --- a/gemfiles/jruby_9.2_core_old.gemfile +++ b/gemfiles/jruby_9.2_core_old.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_core_old.gemfile.lock b/gemfiles/jruby_9.2_core_old.gemfile.lock index 33fd44fa912..8e9006be3a9 100644 --- a/gemfiles/jruby_9.2_core_old.gemfile.lock +++ b/gemfiles/jruby_9.2_core_old.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -41,7 +41,7 @@ GEM hashdiff (1.0.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -61,21 +61,21 @@ GEM rake rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -116,7 +116,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_elasticsearch_7.gemfile b/gemfiles/jruby_9.2_elasticsearch_7.gemfile index ccf07a34278..684954a43d6 100644 --- a/gemfiles/jruby_9.2_elasticsearch_7.gemfile +++ b/gemfiles/jruby_9.2_elasticsearch_7.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_elasticsearch_7.gemfile.lock b/gemfiles/jruby_9.2_elasticsearch_7.gemfile.lock index 9a4a8a60f2a..3338d34f99d 100644 --- a/gemfiles/jruby_9.2_elasticsearch_7.gemfile.lock +++ b/gemfiles/jruby_9.2_elasticsearch_7.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -75,7 +75,7 @@ GEM hashdiff (1.0.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -98,21 +98,21 @@ GEM rake rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -155,7 +155,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_elasticsearch_8.gemfile b/gemfiles/jruby_9.2_elasticsearch_8.gemfile index 527e95bd41d..da379dc8d21 100644 --- a/gemfiles/jruby_9.2_elasticsearch_8.gemfile +++ b/gemfiles/jruby_9.2_elasticsearch_8.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_elasticsearch_8.gemfile.lock b/gemfiles/jruby_9.2_elasticsearch_8.gemfile.lock index 5c16ff7f1c7..248cb31610b 100644 --- a/gemfiles/jruby_9.2_elasticsearch_8.gemfile.lock +++ b/gemfiles/jruby_9.2_elasticsearch_8.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -73,7 +73,7 @@ GEM hashdiff (1.0.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -96,21 +96,21 @@ GEM rake rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -153,7 +153,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_elasticsearch_latest.gemfile b/gemfiles/jruby_9.2_elasticsearch_latest.gemfile index 872ed2412f2..24712bc4ed5 100644 --- a/gemfiles/jruby_9.2_elasticsearch_latest.gemfile +++ b/gemfiles/jruby_9.2_elasticsearch_latest.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_elasticsearch_latest.gemfile.lock b/gemfiles/jruby_9.2_elasticsearch_latest.gemfile.lock index d1e21ae6e9d..56bd55bb4e6 100644 --- a/gemfiles/jruby_9.2_elasticsearch_latest.gemfile.lock +++ b/gemfiles/jruby_9.2_elasticsearch_latest.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -75,7 +75,7 @@ GEM hashdiff (1.1.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -153,7 +153,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_graphql_2.0.gemfile b/gemfiles/jruby_9.2_graphql_2.0.gemfile index 6c236dca012..bc8a14f9d2a 100644 --- a/gemfiles/jruby_9.2_graphql_2.0.gemfile +++ b/gemfiles/jruby_9.2_graphql_2.0.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_graphql_2.0.gemfile.lock b/gemfiles/jruby_9.2_graphql_2.0.gemfile.lock index 98038300b71..07336f3ce3b 100644 --- a/gemfiles/jruby_9.2_graphql_2.0.gemfile.lock +++ b/gemfiles/jruby_9.2_graphql_2.0.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -112,7 +112,7 @@ GEM io-wait (0.3.1-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) lograge (0.14.0) @@ -198,21 +198,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -271,7 +271,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_http.gemfile b/gemfiles/jruby_9.2_http.gemfile index 33ee0e9a071..05867428a9b 100644 --- a/gemfiles/jruby_9.2_http.gemfile +++ b/gemfiles/jruby_9.2_http.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_http.gemfile.lock b/gemfiles/jruby_9.2_http.gemfile.lock index a41c672b984..bf3e204b8d8 100644 --- a/gemfiles/jruby_9.2_http.gemfile.lock +++ b/gemfiles/jruby_9.2_http.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -84,7 +84,7 @@ GEM httpclient (2.8.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -114,21 +114,21 @@ GEM netrc (~> 0.8) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -179,7 +179,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) rest-client rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_opensearch_2.gemfile b/gemfiles/jruby_9.2_opensearch_2.gemfile index 0bd917d350d..1c5ee9c7f5a 100644 --- a/gemfiles/jruby_9.2_opensearch_2.gemfile +++ b/gemfiles/jruby_9.2_opensearch_2.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_opensearch_2.gemfile.lock b/gemfiles/jruby_9.2_opensearch_2.gemfile.lock index d0e6614214d..f113a11790d 100644 --- a/gemfiles/jruby_9.2_opensearch_2.gemfile.lock +++ b/gemfiles/jruby_9.2_opensearch_2.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -65,7 +65,7 @@ GEM hashdiff (1.0.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -96,21 +96,21 @@ GEM rake rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -153,7 +153,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_opensearch_3.gemfile b/gemfiles/jruby_9.2_opensearch_3.gemfile index 10dfcfc68ed..1798762add3 100644 --- a/gemfiles/jruby_9.2_opensearch_3.gemfile +++ b/gemfiles/jruby_9.2_opensearch_3.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_opensearch_3.gemfile.lock b/gemfiles/jruby_9.2_opensearch_3.gemfile.lock index 29f8f3bcd4f..a2a553eaab3 100644 --- a/gemfiles/jruby_9.2_opensearch_3.gemfile.lock +++ b/gemfiles/jruby_9.2_opensearch_3.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -65,7 +65,7 @@ GEM hashdiff (1.0.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -91,21 +91,21 @@ GEM rake rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -148,7 +148,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_opensearch_latest.gemfile b/gemfiles/jruby_9.2_opensearch_latest.gemfile index ce3184fd285..399561895a0 100644 --- a/gemfiles/jruby_9.2_opensearch_latest.gemfile +++ b/gemfiles/jruby_9.2_opensearch_latest.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_opensearch_latest.gemfile.lock b/gemfiles/jruby_9.2_opensearch_latest.gemfile.lock index 4ae186c547d..e85af9a964f 100644 --- a/gemfiles/jruby_9.2_opensearch_latest.gemfile.lock +++ b/gemfiles/jruby_9.2_opensearch_latest.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -67,7 +67,7 @@ GEM hashdiff (1.1.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -148,7 +148,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_rack_1.gemfile b/gemfiles/jruby_9.2_rack_1.gemfile index d9605009b83..afba1c1cdd7 100644 --- a/gemfiles/jruby_9.2_rack_1.gemfile +++ b/gemfiles/jruby_9.2_rack_1.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_rack_1.gemfile.lock b/gemfiles/jruby_9.2_rack_1.gemfile.lock index 04f9fb4eb7b..d6b7102c2b7 100644 --- a/gemfiles/jruby_9.2_rack_1.gemfile.lock +++ b/gemfiles/jruby_9.2_rack_1.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -41,7 +41,7 @@ GEM hashdiff (1.0.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -66,21 +66,21 @@ GEM rake rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -124,7 +124,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_rack_2.gemfile b/gemfiles/jruby_9.2_rack_2.gemfile index ef001452b49..84aa6a0ab97 100644 --- a/gemfiles/jruby_9.2_rack_2.gemfile +++ b/gemfiles/jruby_9.2_rack_2.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_rack_2.gemfile.lock b/gemfiles/jruby_9.2_rack_2.gemfile.lock index 3852f925706..cd74873e666 100644 --- a/gemfiles/jruby_9.2_rack_2.gemfile.lock +++ b/gemfiles/jruby_9.2_rack_2.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -41,7 +41,7 @@ GEM hashdiff (1.0.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -66,21 +66,21 @@ GEM rake rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -124,7 +124,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_rack_3.gemfile b/gemfiles/jruby_9.2_rack_3.gemfile index 8ade6823cc4..4ed3dc1d77c 100644 --- a/gemfiles/jruby_9.2_rack_3.gemfile +++ b/gemfiles/jruby_9.2_rack_3.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_rack_3.gemfile.lock b/gemfiles/jruby_9.2_rack_3.gemfile.lock index 0c83af2a3c3..da096e985aa 100644 --- a/gemfiles/jruby_9.2_rack_3.gemfile.lock +++ b/gemfiles/jruby_9.2_rack_3.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -41,7 +41,7 @@ GEM hashdiff (1.0.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -66,21 +66,21 @@ GEM rake rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -124,7 +124,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_rack_latest.gemfile b/gemfiles/jruby_9.2_rack_latest.gemfile index d0cab64bd3e..bdd6cc2aa4c 100644 --- a/gemfiles/jruby_9.2_rack_latest.gemfile +++ b/gemfiles/jruby_9.2_rack_latest.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_rack_latest.gemfile.lock b/gemfiles/jruby_9.2_rack_latest.gemfile.lock index c3f4b8fbeee..abf65a77c6f 100644 --- a/gemfiles/jruby_9.2_rack_latest.gemfile.lock +++ b/gemfiles/jruby_9.2_rack_latest.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -44,7 +44,7 @@ GEM hashdiff (1.1.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -126,7 +126,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_rails5_mysql2.gemfile b/gemfiles/jruby_9.2_rails5_mysql2.gemfile index ffd2770b65b..fb49223776e 100644 --- a/gemfiles/jruby_9.2_rails5_mysql2.gemfile +++ b/gemfiles/jruby_9.2_rails5_mysql2.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_rails5_mysql2.gemfile.lock b/gemfiles/jruby_9.2_rails5_mysql2.gemfile.lock index ccc51d64bc8..76ae6a769c6 100644 --- a/gemfiles/jruby_9.2_rails5_mysql2.gemfile.lock +++ b/gemfiles/jruby_9.2_rails5_mysql2.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -96,7 +96,7 @@ GEM jdbc-mysql (8.0.27) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) lograge (0.12.0) @@ -162,21 +162,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -235,7 +235,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_rails5_postgres.gemfile b/gemfiles/jruby_9.2_rails5_postgres.gemfile index d1b7cdb544e..32ffb8ccd5c 100644 --- a/gemfiles/jruby_9.2_rails5_postgres.gemfile +++ b/gemfiles/jruby_9.2_rails5_postgres.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_rails5_postgres.gemfile.lock b/gemfiles/jruby_9.2_rails5_postgres.gemfile.lock index d730ee3a1d9..8feb7731f14 100644 --- a/gemfiles/jruby_9.2_rails5_postgres.gemfile.lock +++ b/gemfiles/jruby_9.2_rails5_postgres.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -98,7 +98,7 @@ GEM jdbc-postgres (42.2.25) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) lograge (0.12.0) @@ -180,21 +180,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -253,7 +253,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_rails5_postgres_redis.gemfile b/gemfiles/jruby_9.2_rails5_postgres_redis.gemfile index 7325a72ea0c..e7f2b49fcdc 100644 --- a/gemfiles/jruby_9.2_rails5_postgres_redis.gemfile +++ b/gemfiles/jruby_9.2_rails5_postgres_redis.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_rails5_postgres_redis.gemfile.lock b/gemfiles/jruby_9.2_rails5_postgres_redis.gemfile.lock index d30d2ba5aac..c130ff9922d 100644 --- a/gemfiles/jruby_9.2_rails5_postgres_redis.gemfile.lock +++ b/gemfiles/jruby_9.2_rails5_postgres_redis.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -99,7 +99,7 @@ GEM jdbc-postgres (42.2.25) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) lograge (0.12.0) @@ -185,21 +185,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -259,7 +259,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (>= 4.0.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_rails5_postgres_redis_activesupport.gemfile b/gemfiles/jruby_9.2_rails5_postgres_redis_activesupport.gemfile index 90a3b189533..4ac5ac6881f 100644 --- a/gemfiles/jruby_9.2_rails5_postgres_redis_activesupport.gemfile +++ b/gemfiles/jruby_9.2_rails5_postgres_redis_activesupport.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.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 30f0c8699e1..d3f671e77db 100644 --- a/gemfiles/jruby_9.2_rails5_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/jruby_9.2_rails5_postgres_redis_activesupport.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -98,7 +98,7 @@ GEM jdbc-postgres (42.2.25) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) lograge (0.12.0) @@ -197,21 +197,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -273,7 +273,7 @@ DEPENDENCIES redis-rails redis-store (~> 1.9) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_rails5_postgres_sidekiq.gemfile b/gemfiles/jruby_9.2_rails5_postgres_sidekiq.gemfile index bca17c23019..d1f7a14991e 100644 --- a/gemfiles/jruby_9.2_rails5_postgres_sidekiq.gemfile +++ b/gemfiles/jruby_9.2_rails5_postgres_sidekiq.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_rails5_postgres_sidekiq.gemfile.lock b/gemfiles/jruby_9.2_rails5_postgres_sidekiq.gemfile.lock index b4d2c67f14d..749d977cbd1 100644 --- a/gemfiles/jruby_9.2_rails5_postgres_sidekiq.gemfile.lock +++ b/gemfiles/jruby_9.2_rails5_postgres_sidekiq.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -99,7 +99,7 @@ GEM jdbc-postgres (42.2.25) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) lograge (0.12.0) @@ -182,21 +182,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -260,7 +260,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_rails5_semantic_logger.gemfile b/gemfiles/jruby_9.2_rails5_semantic_logger.gemfile index 474be2259ac..50816fb1b28 100644 --- a/gemfiles/jruby_9.2_rails5_semantic_logger.gemfile +++ b/gemfiles/jruby_9.2_rails5_semantic_logger.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_rails5_semantic_logger.gemfile.lock b/gemfiles/jruby_9.2_rails5_semantic_logger.gemfile.lock index d45eafe4ef7..45a4551ab34 100644 --- a/gemfiles/jruby_9.2_rails5_semantic_logger.gemfile.lock +++ b/gemfiles/jruby_9.2_rails5_semantic_logger.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -98,7 +98,7 @@ GEM jdbc-postgres (42.2.25) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) loofah (2.19.1) @@ -177,21 +177,21 @@ GEM rake rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -252,7 +252,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_rails61_mysql2.gemfile b/gemfiles/jruby_9.2_rails61_mysql2.gemfile index a006c7e0e7d..5e7878033eb 100644 --- a/gemfiles/jruby_9.2_rails61_mysql2.gemfile +++ b/gemfiles/jruby_9.2_rails61_mysql2.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_rails61_mysql2.gemfile.lock b/gemfiles/jruby_9.2_rails61_mysql2.gemfile.lock index 6d1dacbbab7..b18dbc6303f 100644 --- a/gemfiles/jruby_9.2_rails61_mysql2.gemfile.lock +++ b/gemfiles/jruby_9.2_rails61_mysql2.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -113,7 +113,7 @@ GEM jdbc-mysql (8.0.27) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) lograge (0.12.0) @@ -181,21 +181,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -254,7 +254,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_rails61_postgres.gemfile b/gemfiles/jruby_9.2_rails61_postgres.gemfile index 3b165f81b58..d641bebe51d 100644 --- a/gemfiles/jruby_9.2_rails61_postgres.gemfile +++ b/gemfiles/jruby_9.2_rails61_postgres.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_rails61_postgres.gemfile.lock b/gemfiles/jruby_9.2_rails61_postgres.gemfile.lock index 304412c4ea8..f012f03ce7c 100644 --- a/gemfiles/jruby_9.2_rails61_postgres.gemfile.lock +++ b/gemfiles/jruby_9.2_rails61_postgres.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -115,7 +115,7 @@ GEM jdbc-postgres (42.2.25) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) lograge (0.12.0) @@ -199,21 +199,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -272,7 +272,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_rails61_postgres_redis.gemfile b/gemfiles/jruby_9.2_rails61_postgres_redis.gemfile index aa31be8c96f..295a1fa78c5 100644 --- a/gemfiles/jruby_9.2_rails61_postgres_redis.gemfile +++ b/gemfiles/jruby_9.2_rails61_postgres_redis.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_rails61_postgres_redis.gemfile.lock b/gemfiles/jruby_9.2_rails61_postgres_redis.gemfile.lock index 07b023e75d0..50739724128 100644 --- a/gemfiles/jruby_9.2_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/jruby_9.2_rails61_postgres_redis.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -116,7 +116,7 @@ GEM jdbc-postgres (42.2.25) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) lograge (0.12.0) @@ -204,21 +204,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -278,7 +278,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (>= 4.2.5) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_rails61_postgres_sidekiq.gemfile b/gemfiles/jruby_9.2_rails61_postgres_sidekiq.gemfile index 7a453489844..073a164c55a 100644 --- a/gemfiles/jruby_9.2_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/jruby_9.2_rails61_postgres_sidekiq.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/jruby_9.2_rails61_postgres_sidekiq.gemfile.lock index e2dd9cfa560..9754e7e9b93 100644 --- a/gemfiles/jruby_9.2_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/jruby_9.2_rails61_postgres_sidekiq.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -116,7 +116,7 @@ GEM jdbc-postgres (42.2.25) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) lograge (0.12.0) @@ -201,21 +201,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -278,7 +278,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_rails61_semantic_logger.gemfile b/gemfiles/jruby_9.2_rails61_semantic_logger.gemfile index 9abf07e24e9..67066b66ffb 100644 --- a/gemfiles/jruby_9.2_rails61_semantic_logger.gemfile +++ b/gemfiles/jruby_9.2_rails61_semantic_logger.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_rails61_semantic_logger.gemfile.lock b/gemfiles/jruby_9.2_rails61_semantic_logger.gemfile.lock index 72c1bbe876c..2226b59753b 100644 --- a/gemfiles/jruby_9.2_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/jruby_9.2_rails61_semantic_logger.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -115,7 +115,7 @@ GEM jdbc-postgres (42.2.25) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) loofah (2.19.1) @@ -196,21 +196,21 @@ GEM rake rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -271,7 +271,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_rails6_mysql2.gemfile b/gemfiles/jruby_9.2_rails6_mysql2.gemfile index a5ca4dcd7a6..23c06266bb6 100644 --- a/gemfiles/jruby_9.2_rails6_mysql2.gemfile +++ b/gemfiles/jruby_9.2_rails6_mysql2.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_rails6_mysql2.gemfile.lock b/gemfiles/jruby_9.2_rails6_mysql2.gemfile.lock index 29e9f6af820..949c654451f 100644 --- a/gemfiles/jruby_9.2_rails6_mysql2.gemfile.lock +++ b/gemfiles/jruby_9.2_rails6_mysql2.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -109,7 +109,7 @@ GEM jdbc-mysql (8.0.27) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) lograge (0.12.0) @@ -177,21 +177,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -251,7 +251,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_rails6_postgres.gemfile b/gemfiles/jruby_9.2_rails6_postgres.gemfile index 3e48180616c..1fdf89d5444 100644 --- a/gemfiles/jruby_9.2_rails6_postgres.gemfile +++ b/gemfiles/jruby_9.2_rails6_postgres.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_rails6_postgres.gemfile.lock b/gemfiles/jruby_9.2_rails6_postgres.gemfile.lock index 13b900d443f..1852f26078f 100644 --- a/gemfiles/jruby_9.2_rails6_postgres.gemfile.lock +++ b/gemfiles/jruby_9.2_rails6_postgres.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -111,7 +111,7 @@ GEM jdbc-postgres (42.2.25) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) lograge (0.12.0) @@ -195,21 +195,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -269,7 +269,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_rails6_postgres_redis.gemfile b/gemfiles/jruby_9.2_rails6_postgres_redis.gemfile index 8be780365e4..6db40cd893f 100644 --- a/gemfiles/jruby_9.2_rails6_postgres_redis.gemfile +++ b/gemfiles/jruby_9.2_rails6_postgres_redis.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_rails6_postgres_redis.gemfile.lock b/gemfiles/jruby_9.2_rails6_postgres_redis.gemfile.lock index 1364e80c60b..6274b80c0a3 100644 --- a/gemfiles/jruby_9.2_rails6_postgres_redis.gemfile.lock +++ b/gemfiles/jruby_9.2_rails6_postgres_redis.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -112,7 +112,7 @@ GEM jdbc-postgres (42.2.25) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) lograge (0.12.0) @@ -200,21 +200,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -275,7 +275,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (>= 4.0.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_rails6_postgres_redis_activesupport.gemfile b/gemfiles/jruby_9.2_rails6_postgres_redis_activesupport.gemfile index 91dffc18553..49dcafa829d 100644 --- a/gemfiles/jruby_9.2_rails6_postgres_redis_activesupport.gemfile +++ b/gemfiles/jruby_9.2_rails6_postgres_redis_activesupport.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.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 4b0ee1bfcd5..01bca53a141 100644 --- a/gemfiles/jruby_9.2_rails6_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/jruby_9.2_rails6_postgres_redis_activesupport.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -111,7 +111,7 @@ GEM jdbc-postgres (42.2.25) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) lograge (0.12.0) @@ -212,21 +212,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -289,7 +289,7 @@ DEPENDENCIES redis-rails redis-store (~> 1.9) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_rails6_postgres_sidekiq.gemfile b/gemfiles/jruby_9.2_rails6_postgres_sidekiq.gemfile index 068c22923af..aed27de23bf 100644 --- a/gemfiles/jruby_9.2_rails6_postgres_sidekiq.gemfile +++ b/gemfiles/jruby_9.2_rails6_postgres_sidekiq.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_rails6_postgres_sidekiq.gemfile.lock b/gemfiles/jruby_9.2_rails6_postgres_sidekiq.gemfile.lock index 5deeb1a85e4..5c435f4ad10 100644 --- a/gemfiles/jruby_9.2_rails6_postgres_sidekiq.gemfile.lock +++ b/gemfiles/jruby_9.2_rails6_postgres_sidekiq.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -112,7 +112,7 @@ GEM jdbc-postgres (42.2.25) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) lograge (0.12.0) @@ -197,21 +197,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -276,7 +276,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_rails6_semantic_logger.gemfile b/gemfiles/jruby_9.2_rails6_semantic_logger.gemfile index c5e4d01e67f..c789973da77 100644 --- a/gemfiles/jruby_9.2_rails6_semantic_logger.gemfile +++ b/gemfiles/jruby_9.2_rails6_semantic_logger.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_rails6_semantic_logger.gemfile.lock b/gemfiles/jruby_9.2_rails6_semantic_logger.gemfile.lock index 6bf310f96c3..ee84cbf98a8 100644 --- a/gemfiles/jruby_9.2_rails6_semantic_logger.gemfile.lock +++ b/gemfiles/jruby_9.2_rails6_semantic_logger.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -111,7 +111,7 @@ GEM jdbc-postgres (42.2.25) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) loofah (2.19.1) @@ -192,21 +192,21 @@ GEM rake rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -268,7 +268,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_redis_3.gemfile b/gemfiles/jruby_9.2_redis_3.gemfile index 6a2b337498e..6e506fea07b 100644 --- a/gemfiles/jruby_9.2_redis_3.gemfile +++ b/gemfiles/jruby_9.2_redis_3.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_redis_3.gemfile.lock b/gemfiles/jruby_9.2_redis_3.gemfile.lock index 050e0540305..9ae19b6c4c1 100644 --- a/gemfiles/jruby_9.2_redis_3.gemfile.lock +++ b/gemfiles/jruby_9.2_redis_3.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -41,7 +41,7 @@ GEM hashdiff (1.0.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -62,21 +62,21 @@ GEM redis (3.3.5) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -118,7 +118,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 3) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_redis_4.gemfile b/gemfiles/jruby_9.2_redis_4.gemfile index f23671dc053..5ad738c6c4a 100644 --- a/gemfiles/jruby_9.2_redis_4.gemfile +++ b/gemfiles/jruby_9.2_redis_4.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_redis_4.gemfile.lock b/gemfiles/jruby_9.2_redis_4.gemfile.lock index c0f5d3826cc..7da3225cc0f 100644 --- a/gemfiles/jruby_9.2_redis_4.gemfile.lock +++ b/gemfiles/jruby_9.2_redis_4.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -41,7 +41,7 @@ GEM hashdiff (1.0.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -62,21 +62,21 @@ GEM redis (4.8.0) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -118,7 +118,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 4) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_redis_5.gemfile b/gemfiles/jruby_9.2_redis_5.gemfile index 517dc0678be..ef29f4783b5 100644 --- a/gemfiles/jruby_9.2_redis_5.gemfile +++ b/gemfiles/jruby_9.2_redis_5.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_redis_5.gemfile.lock b/gemfiles/jruby_9.2_redis_5.gemfile.lock index 4fd8bb2ac42..4278eb7cac1 100644 --- a/gemfiles/jruby_9.2_redis_5.gemfile.lock +++ b/gemfiles/jruby_9.2_redis_5.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -42,7 +42,7 @@ GEM hashdiff (1.0.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -66,21 +66,21 @@ GEM connection_pool rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -122,7 +122,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 5) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_relational_db.gemfile b/gemfiles/jruby_9.2_relational_db.gemfile index 7b2744e18b7..63aa4408542 100644 --- a/gemfiles/jruby_9.2_relational_db.gemfile +++ b/gemfiles/jruby_9.2_relational_db.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_relational_db.gemfile.lock b/gemfiles/jruby_9.2_relational_db.gemfile.lock index 4dac249207d..16280899bcc 100644 --- a/gemfiles/jruby_9.2_relational_db.gemfile.lock +++ b/gemfiles/jruby_9.2_relational_db.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -75,7 +75,7 @@ GEM jdbc-sqlite3 (3.28.0) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) makara (0.5.1) @@ -98,21 +98,21 @@ GEM rake rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -165,7 +165,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_resque2_redis3.gemfile b/gemfiles/jruby_9.2_resque2_redis3.gemfile index e8fb911be02..82de7e40805 100644 --- a/gemfiles/jruby_9.2_resque2_redis3.gemfile +++ b/gemfiles/jruby_9.2_resque2_redis3.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_resque2_redis3.gemfile.lock b/gemfiles/jruby_9.2_resque2_redis3.gemfile.lock index 89ee15a991a..a2ce2f980e7 100644 --- a/gemfiles/jruby_9.2_resque2_redis3.gemfile.lock +++ b/gemfiles/jruby_9.2_resque2_redis3.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -41,7 +41,7 @@ GEM hashdiff (1.0.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -76,21 +76,21 @@ GEM sinatra (>= 0.9.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -140,7 +140,7 @@ DEPENDENCIES redis (< 4.0) resque (>= 2.0) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_resque2_redis4.gemfile b/gemfiles/jruby_9.2_resque2_redis4.gemfile index 081f1cb108c..48261278863 100644 --- a/gemfiles/jruby_9.2_resque2_redis4.gemfile +++ b/gemfiles/jruby_9.2_resque2_redis4.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_resque2_redis4.gemfile.lock b/gemfiles/jruby_9.2_resque2_redis4.gemfile.lock index 33cb85cf1c8..3221bc7f492 100644 --- a/gemfiles/jruby_9.2_resque2_redis4.gemfile.lock +++ b/gemfiles/jruby_9.2_resque2_redis4.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -42,7 +42,7 @@ GEM hashdiff (1.0.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -80,21 +80,21 @@ GEM sinatra (>= 0.9.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -144,7 +144,7 @@ DEPENDENCIES redis (>= 4.0) resque (>= 2.0) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_sinatra_2.gemfile b/gemfiles/jruby_9.2_sinatra_2.gemfile index 39a40e52197..44f8019d700 100644 --- a/gemfiles/jruby_9.2_sinatra_2.gemfile +++ b/gemfiles/jruby_9.2_sinatra_2.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_sinatra_2.gemfile.lock b/gemfiles/jruby_9.2_sinatra_2.gemfile.lock index 58f0d2f44b7..cdc9b7a30fe 100644 --- a/gemfiles/jruby_9.2_sinatra_2.gemfile.lock +++ b/gemfiles/jruby_9.2_sinatra_2.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -44,7 +44,7 @@ GEM hashdiff (1.1.0) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -138,7 +138,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_stripe_10.gemfile b/gemfiles/jruby_9.2_stripe_10.gemfile index 68b95783335..aba64fb9512 100644 --- a/gemfiles/jruby_9.2_stripe_10.gemfile +++ b/gemfiles/jruby_9.2_stripe_10.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_stripe_10.gemfile.lock b/gemfiles/jruby_9.2_stripe_10.gemfile.lock index cec3fc6bea4..d6fb5f38d37 100644 --- a/gemfiles/jruby_9.2_stripe_10.gemfile.lock +++ b/gemfiles/jruby_9.2_stripe_10.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -44,7 +44,7 @@ GEM hashdiff (1.1.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -121,7 +121,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_stripe_11.gemfile b/gemfiles/jruby_9.2_stripe_11.gemfile index 5a2af5d3873..741ee98c62b 100644 --- a/gemfiles/jruby_9.2_stripe_11.gemfile +++ b/gemfiles/jruby_9.2_stripe_11.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_stripe_11.gemfile.lock b/gemfiles/jruby_9.2_stripe_11.gemfile.lock index 0c2578def1f..903e025ed5d 100644 --- a/gemfiles/jruby_9.2_stripe_11.gemfile.lock +++ b/gemfiles/jruby_9.2_stripe_11.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -44,7 +44,7 @@ GEM hashdiff (1.1.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -121,7 +121,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_stripe_12.gemfile b/gemfiles/jruby_9.2_stripe_12.gemfile index 42bc443555a..d91325e4bf3 100644 --- a/gemfiles/jruby_9.2_stripe_12.gemfile +++ b/gemfiles/jruby_9.2_stripe_12.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_stripe_12.gemfile.lock b/gemfiles/jruby_9.2_stripe_12.gemfile.lock index 66ca20725ba..73e0a34d1c2 100644 --- a/gemfiles/jruby_9.2_stripe_12.gemfile.lock +++ b/gemfiles/jruby_9.2_stripe_12.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -44,7 +44,7 @@ GEM hashdiff (1.1.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -121,7 +121,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_stripe_7.gemfile b/gemfiles/jruby_9.2_stripe_7.gemfile index 741f6b8cb2b..2293d4e034c 100644 --- a/gemfiles/jruby_9.2_stripe_7.gemfile +++ b/gemfiles/jruby_9.2_stripe_7.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_stripe_7.gemfile.lock b/gemfiles/jruby_9.2_stripe_7.gemfile.lock index b3c06d1743e..e8b9dfc5761 100644 --- a/gemfiles/jruby_9.2_stripe_7.gemfile.lock +++ b/gemfiles/jruby_9.2_stripe_7.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -44,7 +44,7 @@ GEM hashdiff (1.1.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -121,7 +121,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_stripe_8.gemfile b/gemfiles/jruby_9.2_stripe_8.gemfile index 609187b12c6..fd406f04bf6 100644 --- a/gemfiles/jruby_9.2_stripe_8.gemfile +++ b/gemfiles/jruby_9.2_stripe_8.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_stripe_8.gemfile.lock b/gemfiles/jruby_9.2_stripe_8.gemfile.lock index 2c3a59a9ec3..b1d1845510a 100644 --- a/gemfiles/jruby_9.2_stripe_8.gemfile.lock +++ b/gemfiles/jruby_9.2_stripe_8.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -44,7 +44,7 @@ GEM hashdiff (1.1.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -121,7 +121,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_stripe_9.gemfile b/gemfiles/jruby_9.2_stripe_9.gemfile index 39ec604c402..b5c9fe9d3cd 100644 --- a/gemfiles/jruby_9.2_stripe_9.gemfile +++ b/gemfiles/jruby_9.2_stripe_9.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_stripe_9.gemfile.lock b/gemfiles/jruby_9.2_stripe_9.gemfile.lock index 8283187de4c..5e62445e3ad 100644 --- a/gemfiles/jruby_9.2_stripe_9.gemfile.lock +++ b/gemfiles/jruby_9.2_stripe_9.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -44,7 +44,7 @@ GEM hashdiff (1.1.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -121,7 +121,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_stripe_latest.gemfile b/gemfiles/jruby_9.2_stripe_latest.gemfile index 888ca396ba3..5ac154b5b23 100644 --- a/gemfiles/jruby_9.2_stripe_latest.gemfile +++ b/gemfiles/jruby_9.2_stripe_latest.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_stripe_latest.gemfile.lock b/gemfiles/jruby_9.2_stripe_latest.gemfile.lock index 51c03a1379d..427c1b8da2d 100644 --- a/gemfiles/jruby_9.2_stripe_latest.gemfile.lock +++ b/gemfiles/jruby_9.2_stripe_latest.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -44,7 +44,7 @@ GEM hashdiff (1.1.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -91,7 +91,7 @@ GEM simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi - stripe (13.0.2) + stripe (13.1.0) thor (1.2.2) warning (1.4.0) webmock (3.23.1) @@ -119,7 +119,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.2_stripe_min.gemfile b/gemfiles/jruby_9.2_stripe_min.gemfile index 35478010b32..e61edf74530 100644 --- a/gemfiles/jruby_9.2_stripe_min.gemfile +++ b/gemfiles/jruby_9.2_stripe_min.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.2_stripe_min.gemfile.lock b/gemfiles/jruby_9.2_stripe_min.gemfile.lock index 954350aa322..1fcf083de38 100644 --- a/gemfiles/jruby_9.2_stripe_min.gemfile.lock +++ b/gemfiles/jruby_9.2_stripe_min.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -44,7 +44,7 @@ GEM hashdiff (1.1.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -119,7 +119,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_activesupport.gemfile b/gemfiles/jruby_9.3_activesupport.gemfile index b29e416fc16..4859053a6c6 100644 --- a/gemfiles/jruby_9.3_activesupport.gemfile +++ b/gemfiles/jruby_9.3_activesupport.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_activesupport.gemfile.lock b/gemfiles/jruby_9.3_activesupport.gemfile.lock index 9c15b90d371..c719e7015d7 100644 --- a/gemfiles/jruby_9.3_activesupport.gemfile.lock +++ b/gemfiles/jruby_9.3_activesupport.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -105,7 +105,7 @@ GEM addressable (>= 2.4) jsonapi-renderer (0.2.2) king_konf (1.0.1) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) lograge (0.13.0) @@ -174,21 +174,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -267,7 +267,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_aws.gemfile b/gemfiles/jruby_9.3_aws.gemfile index f39168275e9..e4c68c72251 100644 --- a/gemfiles/jruby_9.3_aws.gemfile +++ b/gemfiles/jruby_9.3_aws.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_aws.gemfile.lock b/gemfiles/jruby_9.3_aws.gemfile.lock index 9e8534e3b3f..22ef3cb18c1 100644 --- a/gemfiles/jruby_9.3_aws.gemfile.lock +++ b/gemfiles/jruby_9.3_aws.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -1465,7 +1465,7 @@ GEM json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -1491,21 +1491,21 @@ GEM rake regexp_parser (2.8.1) rexml (3.2.6) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -1574,7 +1574,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (= 3.2.6) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_contrib.gemfile b/gemfiles/jruby_9.3_contrib.gemfile index 187eaa010b3..8b4864efefe 100644 --- a/gemfiles/jruby_9.3_contrib.gemfile +++ b/gemfiles/jruby_9.3_contrib.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 12.3" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_contrib.gemfile.lock b/gemfiles/jruby_9.3_contrib.gemfile.lock index d41050b7327..2811f8594d4 100644 --- a/gemfiles/jruby_9.3_contrib.gemfile.lock +++ b/gemfiles/jruby_9.3_contrib.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -50,7 +50,7 @@ GEM json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -99,21 +99,21 @@ GEM strscan (>= 3.0.9) roda (3.72.0) rack - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -210,7 +210,7 @@ DEPENDENCIES resque rexml (>= 3.2.7) roda (>= 2.0.0) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_contrib_old.gemfile b/gemfiles/jruby_9.3_contrib_old.gemfile index 3413a90bef3..cc1ced79a88 100644 --- a/gemfiles/jruby_9.3_contrib_old.gemfile +++ b/gemfiles/jruby_9.3_contrib_old.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_contrib_old.gemfile.lock b/gemfiles/jruby_9.3_contrib_old.gemfile.lock index 20c7e178dd7..571ea1d8800 100644 --- a/gemfiles/jruby_9.3_contrib_old.gemfile.lock +++ b/gemfiles/jruby_9.3_contrib_old.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -48,7 +48,7 @@ GEM json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -83,21 +83,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -167,7 +167,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (< 4) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_core_old.gemfile b/gemfiles/jruby_9.3_core_old.gemfile index b0300bee079..7a5fefb96a7 100644 --- a/gemfiles/jruby_9.3_core_old.gemfile +++ b/gemfiles/jruby_9.3_core_old.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_core_old.gemfile.lock b/gemfiles/jruby_9.3_core_old.gemfile.lock index 0ad8167d4d0..0bd38aaeeaf 100644 --- a/gemfiles/jruby_9.3_core_old.gemfile.lock +++ b/gemfiles/jruby_9.3_core_old.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -43,7 +43,7 @@ GEM json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -70,21 +70,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -149,7 +149,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_elasticsearch_7.gemfile b/gemfiles/jruby_9.3_elasticsearch_7.gemfile index 4302ad4b9c5..70b1d7028e8 100644 --- a/gemfiles/jruby_9.3_elasticsearch_7.gemfile +++ b/gemfiles/jruby_9.3_elasticsearch_7.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_elasticsearch_7.gemfile.lock b/gemfiles/jruby_9.3_elasticsearch_7.gemfile.lock index 45c70920c01..9476c772b01 100644 --- a/gemfiles/jruby_9.3_elasticsearch_7.gemfile.lock +++ b/gemfiles/jruby_9.3_elasticsearch_7.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -59,7 +59,7 @@ GEM json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -88,21 +88,21 @@ GEM regexp_parser (2.8.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -169,7 +169,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_elasticsearch_8.gemfile b/gemfiles/jruby_9.3_elasticsearch_8.gemfile index 4caf2617b94..6c286a65d5d 100644 --- a/gemfiles/jruby_9.3_elasticsearch_8.gemfile +++ b/gemfiles/jruby_9.3_elasticsearch_8.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_elasticsearch_8.gemfile.lock b/gemfiles/jruby_9.3_elasticsearch_8.gemfile.lock index 89a8e44829a..536c0a650d2 100644 --- a/gemfiles/jruby_9.3_elasticsearch_8.gemfile.lock +++ b/gemfiles/jruby_9.3_elasticsearch_8.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -58,7 +58,7 @@ GEM json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -87,21 +87,21 @@ GEM regexp_parser (2.8.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -168,7 +168,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_elasticsearch_latest.gemfile b/gemfiles/jruby_9.3_elasticsearch_latest.gemfile index daa69f1d467..3b18583b6e3 100644 --- a/gemfiles/jruby_9.3_elasticsearch_latest.gemfile +++ b/gemfiles/jruby_9.3_elasticsearch_latest.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_elasticsearch_latest.gemfile.lock b/gemfiles/jruby_9.3_elasticsearch_latest.gemfile.lock index d3a09faed71..585a07bc0c7 100644 --- a/gemfiles/jruby_9.3_elasticsearch_latest.gemfile.lock +++ b/gemfiles/jruby_9.3_elasticsearch_latest.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -60,7 +60,7 @@ GEM json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -168,7 +168,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_graphql_1.13.gemfile b/gemfiles/jruby_9.3_graphql_1.13.gemfile index 36e1e49f53f..259d24ebc6f 100644 --- a/gemfiles/jruby_9.3_graphql_1.13.gemfile +++ b/gemfiles/jruby_9.3_graphql_1.13.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_graphql_1.13.gemfile.lock b/gemfiles/jruby_9.3_graphql_1.13.gemfile.lock index 4d9727ca61f..0234343e243 100644 --- a/gemfiles/jruby_9.3_graphql_1.13.gemfile.lock +++ b/gemfiles/jruby_9.3_graphql_1.13.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -113,7 +113,7 @@ GEM json (2.7.1-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) lograge (0.14.0) @@ -201,21 +201,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -298,7 +298,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_graphql_2.0.gemfile b/gemfiles/jruby_9.3_graphql_2.0.gemfile index 49aeee30faa..7f1520d6a31 100644 --- a/gemfiles/jruby_9.3_graphql_2.0.gemfile +++ b/gemfiles/jruby_9.3_graphql_2.0.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_graphql_2.0.gemfile.lock b/gemfiles/jruby_9.3_graphql_2.0.gemfile.lock index 2132f3e78f2..d02ab5485ee 100644 --- a/gemfiles/jruby_9.3_graphql_2.0.gemfile.lock +++ b/gemfiles/jruby_9.3_graphql_2.0.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -113,7 +113,7 @@ GEM json (2.7.1-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) lograge (0.14.0) @@ -201,21 +201,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -298,7 +298,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_http.gemfile b/gemfiles/jruby_9.3_http.gemfile index cad2da4867c..bb90a36646a 100644 --- a/gemfiles/jruby_9.3_http.gemfile +++ b/gemfiles/jruby_9.3_http.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_http.gemfile.lock b/gemfiles/jruby_9.3_http.gemfile.lock index 940b10f7280..f0ea64fc187 100644 --- a/gemfiles/jruby_9.3_http.gemfile.lock +++ b/gemfiles/jruby_9.3_http.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -67,7 +67,7 @@ GEM json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -103,21 +103,21 @@ GEM netrc (~> 0.8) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -192,7 +192,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) rest-client rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_opensearch_2.gemfile b/gemfiles/jruby_9.3_opensearch_2.gemfile index a33364cf6b5..583b2978477 100644 --- a/gemfiles/jruby_9.3_opensearch_2.gemfile +++ b/gemfiles/jruby_9.3_opensearch_2.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_opensearch_2.gemfile.lock b/gemfiles/jruby_9.3_opensearch_2.gemfile.lock index c1fd83e8d9d..1e2e00c319b 100644 --- a/gemfiles/jruby_9.3_opensearch_2.gemfile.lock +++ b/gemfiles/jruby_9.3_opensearch_2.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -50,7 +50,7 @@ GEM json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -87,21 +87,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -168,7 +168,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_opensearch_3.gemfile b/gemfiles/jruby_9.3_opensearch_3.gemfile index 22ebf6aa80a..cc7af739f90 100644 --- a/gemfiles/jruby_9.3_opensearch_3.gemfile +++ b/gemfiles/jruby_9.3_opensearch_3.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_opensearch_3.gemfile.lock b/gemfiles/jruby_9.3_opensearch_3.gemfile.lock index 270f28b2313..8c1ac105ecc 100644 --- a/gemfiles/jruby_9.3_opensearch_3.gemfile.lock +++ b/gemfiles/jruby_9.3_opensearch_3.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -50,7 +50,7 @@ GEM json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -82,21 +82,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -163,7 +163,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_opensearch_latest.gemfile b/gemfiles/jruby_9.3_opensearch_latest.gemfile index c53f37a828e..469d26f91d2 100644 --- a/gemfiles/jruby_9.3_opensearch_latest.gemfile +++ b/gemfiles/jruby_9.3_opensearch_latest.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_opensearch_latest.gemfile.lock b/gemfiles/jruby_9.3_opensearch_latest.gemfile.lock index 71c513f32e5..e0def100539 100644 --- a/gemfiles/jruby_9.3_opensearch_latest.gemfile.lock +++ b/gemfiles/jruby_9.3_opensearch_latest.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -52,7 +52,7 @@ GEM json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -163,7 +163,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_rack_1.gemfile b/gemfiles/jruby_9.3_rack_1.gemfile index 3cd95240665..d7281e2ec45 100644 --- a/gemfiles/jruby_9.3_rack_1.gemfile +++ b/gemfiles/jruby_9.3_rack_1.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_rack_1.gemfile.lock b/gemfiles/jruby_9.3_rack_1.gemfile.lock index f949e0869de..02408ef7eb8 100644 --- a/gemfiles/jruby_9.3_rack_1.gemfile.lock +++ b/gemfiles/jruby_9.3_rack_1.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -43,7 +43,7 @@ GEM json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -75,21 +75,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -157,7 +157,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_rack_2.gemfile b/gemfiles/jruby_9.3_rack_2.gemfile index 478128372b1..d24da2cf41f 100644 --- a/gemfiles/jruby_9.3_rack_2.gemfile +++ b/gemfiles/jruby_9.3_rack_2.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_rack_2.gemfile.lock b/gemfiles/jruby_9.3_rack_2.gemfile.lock index 53ce8edfa49..d66816d400d 100644 --- a/gemfiles/jruby_9.3_rack_2.gemfile.lock +++ b/gemfiles/jruby_9.3_rack_2.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -43,7 +43,7 @@ GEM json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -75,21 +75,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -157,7 +157,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_rack_3.gemfile b/gemfiles/jruby_9.3_rack_3.gemfile index 6c09997ea6b..2bd51f629c4 100644 --- a/gemfiles/jruby_9.3_rack_3.gemfile +++ b/gemfiles/jruby_9.3_rack_3.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_rack_3.gemfile.lock b/gemfiles/jruby_9.3_rack_3.gemfile.lock index b932230f268..a7cc4e1d44b 100644 --- a/gemfiles/jruby_9.3_rack_3.gemfile.lock +++ b/gemfiles/jruby_9.3_rack_3.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -43,7 +43,7 @@ GEM json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -75,21 +75,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -157,7 +157,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_rack_latest.gemfile b/gemfiles/jruby_9.3_rack_latest.gemfile index a29e6c477c1..b49f608f5a3 100644 --- a/gemfiles/jruby_9.3_rack_latest.gemfile +++ b/gemfiles/jruby_9.3_rack_latest.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_rack_latest.gemfile.lock b/gemfiles/jruby_9.3_rack_latest.gemfile.lock index 50485d698d5..60d24abaf51 100644 --- a/gemfiles/jruby_9.3_rack_latest.gemfile.lock +++ b/gemfiles/jruby_9.3_rack_latest.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -46,7 +46,7 @@ GEM json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -159,7 +159,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_rails5_mysql2.gemfile b/gemfiles/jruby_9.3_rails5_mysql2.gemfile index 4d9bbc0f130..0792abe748d 100644 --- a/gemfiles/jruby_9.3_rails5_mysql2.gemfile +++ b/gemfiles/jruby_9.3_rails5_mysql2.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_rails5_mysql2.gemfile.lock b/gemfiles/jruby_9.3_rails5_mysql2.gemfile.lock index c8aab92d6cf..12ee6079b66 100644 --- a/gemfiles/jruby_9.3_rails5_mysql2.gemfile.lock +++ b/gemfiles/jruby_9.3_rails5_mysql2.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -99,7 +99,7 @@ GEM json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) lograge (0.12.0) @@ -183,21 +183,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -279,7 +279,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_rails5_postgres.gemfile b/gemfiles/jruby_9.3_rails5_postgres.gemfile index b0a55e5a193..7f631b35c69 100644 --- a/gemfiles/jruby_9.3_rails5_postgres.gemfile +++ b/gemfiles/jruby_9.3_rails5_postgres.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_rails5_postgres.gemfile.lock b/gemfiles/jruby_9.3_rails5_postgres.gemfile.lock index 86ec22ecdf4..b48cd79f1c5 100644 --- a/gemfiles/jruby_9.3_rails5_postgres.gemfile.lock +++ b/gemfiles/jruby_9.3_rails5_postgres.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -99,7 +99,7 @@ GEM json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) lograge (0.12.0) @@ -183,21 +183,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -279,7 +279,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_rails5_postgres_redis.gemfile b/gemfiles/jruby_9.3_rails5_postgres_redis.gemfile index 4d649397329..7657d85c5ca 100644 --- a/gemfiles/jruby_9.3_rails5_postgres_redis.gemfile +++ b/gemfiles/jruby_9.3_rails5_postgres_redis.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_rails5_postgres_redis.gemfile.lock b/gemfiles/jruby_9.3_rails5_postgres_redis.gemfile.lock index 757b2131a0a..040e2c22ea5 100644 --- a/gemfiles/jruby_9.3_rails5_postgres_redis.gemfile.lock +++ b/gemfiles/jruby_9.3_rails5_postgres_redis.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -99,7 +99,7 @@ GEM json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) lograge (0.12.0) @@ -184,21 +184,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -281,7 +281,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 4) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_rails5_postgres_redis_activesupport.gemfile b/gemfiles/jruby_9.3_rails5_postgres_redis_activesupport.gemfile index e1996f857ef..18e30b8f809 100644 --- a/gemfiles/jruby_9.3_rails5_postgres_redis_activesupport.gemfile +++ b/gemfiles/jruby_9.3_rails5_postgres_redis_activesupport.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.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 512ba45af53..fabb41b68af 100644 --- a/gemfiles/jruby_9.3_rails5_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/jruby_9.3_rails5_postgres_redis_activesupport.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -99,7 +99,7 @@ GEM json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) lograge (0.12.0) @@ -200,21 +200,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -299,7 +299,7 @@ DEPENDENCIES redis-rails redis-store (>= 1.4, < 2) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile b/gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile index 179585e12ba..008105b7a43 100644 --- a/gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile +++ b/gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile.lock b/gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile.lock index d35f33dfd4f..41cf17124a3 100644 --- a/gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile.lock +++ b/gemfiles/jruby_9.3_rails5_postgres_sidekiq.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -100,7 +100,7 @@ GEM json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) lograge (0.12.0) @@ -185,21 +185,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -286,7 +286,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_rails5_semantic_logger.gemfile b/gemfiles/jruby_9.3_rails5_semantic_logger.gemfile index fa2d7b9c2c0..0ed57f0e826 100644 --- a/gemfiles/jruby_9.3_rails5_semantic_logger.gemfile +++ b/gemfiles/jruby_9.3_rails5_semantic_logger.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_rails5_semantic_logger.gemfile.lock b/gemfiles/jruby_9.3_rails5_semantic_logger.gemfile.lock index 8478a5fe732..d375382ae36 100644 --- a/gemfiles/jruby_9.3_rails5_semantic_logger.gemfile.lock +++ b/gemfiles/jruby_9.3_rails5_semantic_logger.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -99,7 +99,7 @@ GEM json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) loofah (2.21.3) @@ -180,21 +180,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -278,7 +278,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_rails61_mysql2.gemfile b/gemfiles/jruby_9.3_rails61_mysql2.gemfile index 1d3cd25971d..c23ed438e0a 100644 --- a/gemfiles/jruby_9.3_rails61_mysql2.gemfile +++ b/gemfiles/jruby_9.3_rails61_mysql2.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_rails61_mysql2.gemfile.lock b/gemfiles/jruby_9.3_rails61_mysql2.gemfile.lock index 22f5b260821..4e9d8262744 100644 --- a/gemfiles/jruby_9.3_rails61_mysql2.gemfile.lock +++ b/gemfiles/jruby_9.3_rails61_mysql2.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -116,7 +116,7 @@ GEM json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) lograge (0.12.0) @@ -202,21 +202,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -298,7 +298,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_rails61_postgres.gemfile b/gemfiles/jruby_9.3_rails61_postgres.gemfile index 39c3c7dd548..c11fe6ae91e 100644 --- a/gemfiles/jruby_9.3_rails61_postgres.gemfile +++ b/gemfiles/jruby_9.3_rails61_postgres.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_rails61_postgres.gemfile.lock b/gemfiles/jruby_9.3_rails61_postgres.gemfile.lock index f1924a24986..b5dc798af39 100644 --- a/gemfiles/jruby_9.3_rails61_postgres.gemfile.lock +++ b/gemfiles/jruby_9.3_rails61_postgres.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -116,7 +116,7 @@ GEM json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) lograge (0.12.0) @@ -202,21 +202,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -298,7 +298,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_rails61_postgres_redis.gemfile b/gemfiles/jruby_9.3_rails61_postgres_redis.gemfile index abdf6dc1609..798eccecf5a 100644 --- a/gemfiles/jruby_9.3_rails61_postgres_redis.gemfile +++ b/gemfiles/jruby_9.3_rails61_postgres_redis.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_rails61_postgres_redis.gemfile.lock b/gemfiles/jruby_9.3_rails61_postgres_redis.gemfile.lock index dd6240d0747..04bff66f231 100644 --- a/gemfiles/jruby_9.3_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/jruby_9.3_rails61_postgres_redis.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -116,7 +116,7 @@ GEM json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) lograge (0.12.0) @@ -203,21 +203,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -300,7 +300,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 4) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile b/gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile index 61b592b0d37..b89286b540c 100644 --- a/gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile.lock index 140f04a9f79..390a413ae51 100644 --- a/gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/jruby_9.3_rails61_postgres_sidekiq.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -117,7 +117,7 @@ GEM json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) lograge (0.12.0) @@ -204,21 +204,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -304,7 +304,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_rails61_semantic_logger.gemfile b/gemfiles/jruby_9.3_rails61_semantic_logger.gemfile index 8ad4e0f02a9..7c936b51210 100644 --- a/gemfiles/jruby_9.3_rails61_semantic_logger.gemfile +++ b/gemfiles/jruby_9.3_rails61_semantic_logger.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_rails61_semantic_logger.gemfile.lock b/gemfiles/jruby_9.3_rails61_semantic_logger.gemfile.lock index b134cdd5516..4712a4a2b27 100644 --- a/gemfiles/jruby_9.3_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/jruby_9.3_rails61_semantic_logger.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -116,7 +116,7 @@ GEM json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) loofah (2.21.3) @@ -199,21 +199,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -297,7 +297,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_rails6_mysql2.gemfile b/gemfiles/jruby_9.3_rails6_mysql2.gemfile index 64460a8ddcf..344aa0babd8 100644 --- a/gemfiles/jruby_9.3_rails6_mysql2.gemfile +++ b/gemfiles/jruby_9.3_rails6_mysql2.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_rails6_mysql2.gemfile.lock b/gemfiles/jruby_9.3_rails6_mysql2.gemfile.lock index 539823cfa76..aa8a1aafebf 100644 --- a/gemfiles/jruby_9.3_rails6_mysql2.gemfile.lock +++ b/gemfiles/jruby_9.3_rails6_mysql2.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -112,7 +112,7 @@ GEM json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) lograge (0.12.0) @@ -198,21 +198,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -295,7 +295,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_rails6_postgres.gemfile b/gemfiles/jruby_9.3_rails6_postgres.gemfile index 632fcc091e0..9a9cde18819 100644 --- a/gemfiles/jruby_9.3_rails6_postgres.gemfile +++ b/gemfiles/jruby_9.3_rails6_postgres.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_rails6_postgres.gemfile.lock b/gemfiles/jruby_9.3_rails6_postgres.gemfile.lock index 268db0954d6..9fd097a4737 100644 --- a/gemfiles/jruby_9.3_rails6_postgres.gemfile.lock +++ b/gemfiles/jruby_9.3_rails6_postgres.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -112,7 +112,7 @@ GEM json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) lograge (0.12.0) @@ -198,21 +198,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -295,7 +295,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_rails6_postgres_redis.gemfile b/gemfiles/jruby_9.3_rails6_postgres_redis.gemfile index 3dac4593799..6f8d9c613ab 100644 --- a/gemfiles/jruby_9.3_rails6_postgres_redis.gemfile +++ b/gemfiles/jruby_9.3_rails6_postgres_redis.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_rails6_postgres_redis.gemfile.lock b/gemfiles/jruby_9.3_rails6_postgres_redis.gemfile.lock index 8d61facf74d..ae35ef6802f 100644 --- a/gemfiles/jruby_9.3_rails6_postgres_redis.gemfile.lock +++ b/gemfiles/jruby_9.3_rails6_postgres_redis.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -112,7 +112,7 @@ GEM json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) lograge (0.12.0) @@ -199,21 +199,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -297,7 +297,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 4) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_rails6_postgres_redis_activesupport.gemfile b/gemfiles/jruby_9.3_rails6_postgres_redis_activesupport.gemfile index 2317cbbb000..a9a8aa50303 100644 --- a/gemfiles/jruby_9.3_rails6_postgres_redis_activesupport.gemfile +++ b/gemfiles/jruby_9.3_rails6_postgres_redis_activesupport.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.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 5634fa6bf2b..1b41bd74698 100644 --- a/gemfiles/jruby_9.3_rails6_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/jruby_9.3_rails6_postgres_redis_activesupport.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -112,7 +112,7 @@ GEM json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) lograge (0.12.0) @@ -215,21 +215,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -315,7 +315,7 @@ DEPENDENCIES redis-rails redis-store (>= 1.4, < 2) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile b/gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile index 5b54940e762..503502916af 100644 --- a/gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile +++ b/gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile.lock b/gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile.lock index 007dfc331e3..30079826669 100644 --- a/gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile.lock +++ b/gemfiles/jruby_9.3_rails6_postgres_sidekiq.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -113,7 +113,7 @@ GEM json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) lograge (0.12.0) @@ -200,21 +200,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -302,7 +302,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_rails6_semantic_logger.gemfile b/gemfiles/jruby_9.3_rails6_semantic_logger.gemfile index 83b89104285..a2262d1c384 100644 --- a/gemfiles/jruby_9.3_rails6_semantic_logger.gemfile +++ b/gemfiles/jruby_9.3_rails6_semantic_logger.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_rails6_semantic_logger.gemfile.lock b/gemfiles/jruby_9.3_rails6_semantic_logger.gemfile.lock index 344bff7726e..02b184596ee 100644 --- a/gemfiles/jruby_9.3_rails6_semantic_logger.gemfile.lock +++ b/gemfiles/jruby_9.3_rails6_semantic_logger.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -112,7 +112,7 @@ GEM json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) loofah (2.21.3) @@ -195,21 +195,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -294,7 +294,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_redis_3.gemfile b/gemfiles/jruby_9.3_redis_3.gemfile index f225cbe98e2..120ed5776ce 100644 --- a/gemfiles/jruby_9.3_redis_3.gemfile +++ b/gemfiles/jruby_9.3_redis_3.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_redis_3.gemfile.lock b/gemfiles/jruby_9.3_redis_3.gemfile.lock index 050cfa35d2b..7d85cef1109 100644 --- a/gemfiles/jruby_9.3_redis_3.gemfile.lock +++ b/gemfiles/jruby_9.3_redis_3.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -43,7 +43,7 @@ GEM json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -71,21 +71,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -151,7 +151,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 3) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_redis_4.gemfile b/gemfiles/jruby_9.3_redis_4.gemfile index 7615a7116c3..3b71bf806d4 100644 --- a/gemfiles/jruby_9.3_redis_4.gemfile +++ b/gemfiles/jruby_9.3_redis_4.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_redis_4.gemfile.lock b/gemfiles/jruby_9.3_redis_4.gemfile.lock index c619eb10bf9..db3c91a8bba 100644 --- a/gemfiles/jruby_9.3_redis_4.gemfile.lock +++ b/gemfiles/jruby_9.3_redis_4.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -43,7 +43,7 @@ GEM json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -71,21 +71,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -151,7 +151,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 4) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_redis_5.gemfile b/gemfiles/jruby_9.3_redis_5.gemfile index 39a3c283296..9a2a7e15b6e 100644 --- a/gemfiles/jruby_9.3_redis_5.gemfile +++ b/gemfiles/jruby_9.3_redis_5.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_redis_5.gemfile.lock b/gemfiles/jruby_9.3_redis_5.gemfile.lock index 967d5d047f8..1818739954a 100644 --- a/gemfiles/jruby_9.3_redis_5.gemfile.lock +++ b/gemfiles/jruby_9.3_redis_5.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -44,7 +44,7 @@ GEM json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -75,21 +75,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -155,7 +155,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 5) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_relational_db.gemfile b/gemfiles/jruby_9.3_relational_db.gemfile index 37251f5230e..84937b5c8ad 100644 --- a/gemfiles/jruby_9.3_relational_db.gemfile +++ b/gemfiles/jruby_9.3_relational_db.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_relational_db.gemfile.lock b/gemfiles/jruby_9.3_relational_db.gemfile.lock index aed0c320903..8991414281a 100644 --- a/gemfiles/jruby_9.3_relational_db.gemfile.lock +++ b/gemfiles/jruby_9.3_relational_db.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -73,7 +73,7 @@ GEM json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) makara (0.5.1) @@ -103,21 +103,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -195,7 +195,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_resque2_redis3.gemfile b/gemfiles/jruby_9.3_resque2_redis3.gemfile index 57ef12e2279..c6d57669640 100644 --- a/gemfiles/jruby_9.3_resque2_redis3.gemfile +++ b/gemfiles/jruby_9.3_resque2_redis3.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_resque2_redis3.gemfile.lock b/gemfiles/jruby_9.3_resque2_redis3.gemfile.lock index e8c9591bfa8..ac4a377809d 100644 --- a/gemfiles/jruby_9.3_resque2_redis3.gemfile.lock +++ b/gemfiles/jruby_9.3_resque2_redis3.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -43,7 +43,7 @@ GEM json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -85,21 +85,21 @@ GEM sinatra (>= 0.9.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -173,7 +173,7 @@ DEPENDENCIES redis (~> 3.0) resque (>= 2.0) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_resque2_redis4.gemfile b/gemfiles/jruby_9.3_resque2_redis4.gemfile index 42ba624d873..bc88b70edc8 100644 --- a/gemfiles/jruby_9.3_resque2_redis4.gemfile +++ b/gemfiles/jruby_9.3_resque2_redis4.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_resque2_redis4.gemfile.lock b/gemfiles/jruby_9.3_resque2_redis4.gemfile.lock index 1ebc9c35680..fec303ec1e1 100644 --- a/gemfiles/jruby_9.3_resque2_redis4.gemfile.lock +++ b/gemfiles/jruby_9.3_resque2_redis4.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -43,7 +43,7 @@ GEM json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -85,21 +85,21 @@ GEM sinatra (>= 0.9.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -173,7 +173,7 @@ DEPENDENCIES redis (~> 4.0) resque (>= 2.0) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_sinatra_2.gemfile b/gemfiles/jruby_9.3_sinatra_2.gemfile index cc304a0fc12..85eaf9788c9 100644 --- a/gemfiles/jruby_9.3_sinatra_2.gemfile +++ b/gemfiles/jruby_9.3_sinatra_2.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_sinatra_2.gemfile.lock b/gemfiles/jruby_9.3_sinatra_2.gemfile.lock index 23b41b981ce..896f74fe583 100644 --- a/gemfiles/jruby_9.3_sinatra_2.gemfile.lock +++ b/gemfiles/jruby_9.3_sinatra_2.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -46,7 +46,7 @@ GEM json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -171,7 +171,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_sinatra_3.gemfile b/gemfiles/jruby_9.3_sinatra_3.gemfile index ab27b2a5ad3..aa61f6c717f 100644 --- a/gemfiles/jruby_9.3_sinatra_3.gemfile +++ b/gemfiles/jruby_9.3_sinatra_3.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_sinatra_3.gemfile.lock b/gemfiles/jruby_9.3_sinatra_3.gemfile.lock index 494c487ea01..3efe3779d3d 100644 --- a/gemfiles/jruby_9.3_sinatra_3.gemfile.lock +++ b/gemfiles/jruby_9.3_sinatra_3.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -47,7 +47,7 @@ GEM json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -173,7 +173,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_stripe_10.gemfile b/gemfiles/jruby_9.3_stripe_10.gemfile index 748e5c47fb0..f7e7f3b8c24 100644 --- a/gemfiles/jruby_9.3_stripe_10.gemfile +++ b/gemfiles/jruby_9.3_stripe_10.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_stripe_10.gemfile.lock b/gemfiles/jruby_9.3_stripe_10.gemfile.lock index a35339bfbad..77e4e117e91 100644 --- a/gemfiles/jruby_9.3_stripe_10.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_10.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -46,7 +46,7 @@ GEM json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -154,7 +154,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_stripe_11.gemfile b/gemfiles/jruby_9.3_stripe_11.gemfile index 6fd33719394..3ba4f3999ca 100644 --- a/gemfiles/jruby_9.3_stripe_11.gemfile +++ b/gemfiles/jruby_9.3_stripe_11.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_stripe_11.gemfile.lock b/gemfiles/jruby_9.3_stripe_11.gemfile.lock index f5be049ce5e..5b629fcfe76 100644 --- a/gemfiles/jruby_9.3_stripe_11.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_11.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -46,7 +46,7 @@ GEM json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -154,7 +154,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_stripe_12.gemfile b/gemfiles/jruby_9.3_stripe_12.gemfile index 22e2fecc649..1bf3aa3c0a6 100644 --- a/gemfiles/jruby_9.3_stripe_12.gemfile +++ b/gemfiles/jruby_9.3_stripe_12.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_stripe_12.gemfile.lock b/gemfiles/jruby_9.3_stripe_12.gemfile.lock index 0e0ec539882..a3bcf9a7b31 100644 --- a/gemfiles/jruby_9.3_stripe_12.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_12.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -46,7 +46,7 @@ GEM json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -154,7 +154,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_stripe_7.gemfile b/gemfiles/jruby_9.3_stripe_7.gemfile index 820b67dd884..97703c2df44 100644 --- a/gemfiles/jruby_9.3_stripe_7.gemfile +++ b/gemfiles/jruby_9.3_stripe_7.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_stripe_7.gemfile.lock b/gemfiles/jruby_9.3_stripe_7.gemfile.lock index 45fb2651e1d..cd518da4047 100644 --- a/gemfiles/jruby_9.3_stripe_7.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_7.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -46,7 +46,7 @@ GEM json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -154,7 +154,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_stripe_8.gemfile b/gemfiles/jruby_9.3_stripe_8.gemfile index 17f22cb7d66..5b6c7cde265 100644 --- a/gemfiles/jruby_9.3_stripe_8.gemfile +++ b/gemfiles/jruby_9.3_stripe_8.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_stripe_8.gemfile.lock b/gemfiles/jruby_9.3_stripe_8.gemfile.lock index c0b949ac861..e0f3e8ba908 100644 --- a/gemfiles/jruby_9.3_stripe_8.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_8.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -46,7 +46,7 @@ GEM json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -154,7 +154,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_stripe_9.gemfile b/gemfiles/jruby_9.3_stripe_9.gemfile index 81456683078..4b4108fe78f 100644 --- a/gemfiles/jruby_9.3_stripe_9.gemfile +++ b/gemfiles/jruby_9.3_stripe_9.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_stripe_9.gemfile.lock b/gemfiles/jruby_9.3_stripe_9.gemfile.lock index 38196d7272e..8207cf3f4d0 100644 --- a/gemfiles/jruby_9.3_stripe_9.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_9.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -46,7 +46,7 @@ GEM json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -154,7 +154,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_stripe_latest.gemfile b/gemfiles/jruby_9.3_stripe_latest.gemfile index 0c8c3538fb4..8a7faa811de 100644 --- a/gemfiles/jruby_9.3_stripe_latest.gemfile +++ b/gemfiles/jruby_9.3_stripe_latest.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_stripe_latest.gemfile.lock b/gemfiles/jruby_9.3_stripe_latest.gemfile.lock index ae34f4a33f3..f509f5ecef5 100644 --- a/gemfiles/jruby_9.3_stripe_latest.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_latest.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -46,7 +46,7 @@ GEM json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -123,7 +123,7 @@ GEM simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi - stripe (13.0.2) + stripe (13.1.0) thor (1.3.2) unicode-display_width (2.6.0) warning (1.4.0) @@ -152,7 +152,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.3_stripe_min.gemfile b/gemfiles/jruby_9.3_stripe_min.gemfile index d0dc7f859ec..5ed5d3dabcb 100644 --- a/gemfiles/jruby_9.3_stripe_min.gemfile +++ b/gemfiles/jruby_9.3_stripe_min.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.3_stripe_min.gemfile.lock b/gemfiles/jruby_9.3_stripe_min.gemfile.lock index 977ace42ab1..75d61bca078 100644 --- a/gemfiles/jruby_9.3_stripe_min.gemfile.lock +++ b/gemfiles/jruby_9.3_stripe_min.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -46,7 +46,7 @@ GEM json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -152,7 +152,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_activesupport.gemfile b/gemfiles/jruby_9.4_activesupport.gemfile index 68fe2b3258b..431435a269b 100644 --- a/gemfiles/jruby_9.4_activesupport.gemfile +++ b/gemfiles/jruby_9.4_activesupport.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_activesupport.gemfile.lock b/gemfiles/jruby_9.4_activesupport.gemfile.lock index d4b7abcd5b9..69c514cce4e 100644 --- a/gemfiles/jruby_9.4_activesupport.gemfile.lock +++ b/gemfiles/jruby_9.4_activesupport.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -100,7 +100,7 @@ GEM addressable (>= 2.4) jsonapi-renderer (0.2.2) king_konf (1.0.1) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) lograge (0.13.0) @@ -171,21 +171,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -264,7 +264,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_aws.gemfile b/gemfiles/jruby_9.4_aws.gemfile index 9bc71d91618..30b83d75477 100644 --- a/gemfiles/jruby_9.4_aws.gemfile +++ b/gemfiles/jruby_9.4_aws.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_aws.gemfile.lock b/gemfiles/jruby_9.4_aws.gemfile.lock index 7608d5257f0..490cf610af4 100644 --- a/gemfiles/jruby_9.4_aws.gemfile.lock +++ b/gemfiles/jruby_9.4_aws.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -1465,7 +1465,7 @@ GEM json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -1492,21 +1492,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -1577,7 +1577,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_contrib.gemfile b/gemfiles/jruby_9.4_contrib.gemfile index da5396ad6b6..c247ecae7ad 100644 --- a/gemfiles/jruby_9.4_contrib.gemfile +++ b/gemfiles/jruby_9.4_contrib.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 12.3" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_contrib.gemfile.lock b/gemfiles/jruby_9.4_contrib.gemfile.lock index 50efcde35b3..405032be2cb 100644 --- a/gemfiles/jruby_9.4_contrib.gemfile.lock +++ b/gemfiles/jruby_9.4_contrib.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -50,7 +50,7 @@ GEM json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -101,21 +101,21 @@ GEM strscan (>= 3.0.9) roda (3.64.0) rack - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -213,7 +213,7 @@ DEPENDENCIES resque rexml (>= 3.2.7) roda (>= 2.0.0) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_contrib_old.gemfile b/gemfiles/jruby_9.4_contrib_old.gemfile index 52a60b590c3..c96dd1db142 100644 --- a/gemfiles/jruby_9.4_contrib_old.gemfile +++ b/gemfiles/jruby_9.4_contrib_old.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_contrib_old.gemfile.lock b/gemfiles/jruby_9.4_contrib_old.gemfile.lock index 3e0c1423a77..256b0dc75f2 100644 --- a/gemfiles/jruby_9.4_contrib_old.gemfile.lock +++ b/gemfiles/jruby_9.4_contrib_old.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -48,7 +48,7 @@ GEM json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -83,21 +83,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -167,7 +167,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (< 4) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_core_old.gemfile b/gemfiles/jruby_9.4_core_old.gemfile index df4e4f242aa..32a780cbb40 100644 --- a/gemfiles/jruby_9.4_core_old.gemfile +++ b/gemfiles/jruby_9.4_core_old.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_core_old.gemfile.lock b/gemfiles/jruby_9.4_core_old.gemfile.lock index af17be3dabd..290a4076ee3 100644 --- a/gemfiles/jruby_9.4_core_old.gemfile.lock +++ b/gemfiles/jruby_9.4_core_old.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -43,7 +43,7 @@ GEM json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -70,21 +70,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -150,7 +150,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_elasticsearch_7.gemfile b/gemfiles/jruby_9.4_elasticsearch_7.gemfile index f1e39d7b068..f26d937603d 100644 --- a/gemfiles/jruby_9.4_elasticsearch_7.gemfile +++ b/gemfiles/jruby_9.4_elasticsearch_7.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_elasticsearch_7.gemfile.lock b/gemfiles/jruby_9.4_elasticsearch_7.gemfile.lock index c1839f9e06b..67fdca28700 100644 --- a/gemfiles/jruby_9.4_elasticsearch_7.gemfile.lock +++ b/gemfiles/jruby_9.4_elasticsearch_7.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -57,10 +57,10 @@ GEM net-http ffi (1.17.0-java) hashdiff (1.0.1) - json (2.6.3-java) + json (2.7.5-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) logger (1.6.1) @@ -92,21 +92,21 @@ GEM regexp_parser (2.8.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -174,7 +174,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_elasticsearch_8.gemfile b/gemfiles/jruby_9.4_elasticsearch_8.gemfile index 31d6022a852..59dc3ad8dda 100644 --- a/gemfiles/jruby_9.4_elasticsearch_8.gemfile +++ b/gemfiles/jruby_9.4_elasticsearch_8.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_elasticsearch_8.gemfile.lock b/gemfiles/jruby_9.4_elasticsearch_8.gemfile.lock index 9560d5426bc..9192f5952bc 100644 --- a/gemfiles/jruby_9.4_elasticsearch_8.gemfile.lock +++ b/gemfiles/jruby_9.4_elasticsearch_8.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -55,10 +55,10 @@ GEM net-http ffi (1.17.0-java) hashdiff (1.0.1) - json (2.6.3-java) + json (2.7.5-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) logger (1.6.1) @@ -90,21 +90,21 @@ GEM regexp_parser (2.8.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -172,7 +172,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_elasticsearch_latest.gemfile b/gemfiles/jruby_9.4_elasticsearch_latest.gemfile index 4bffbc52641..f9cfec3bf5f 100644 --- a/gemfiles/jruby_9.4_elasticsearch_latest.gemfile +++ b/gemfiles/jruby_9.4_elasticsearch_latest.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_elasticsearch_latest.gemfile.lock b/gemfiles/jruby_9.4_elasticsearch_latest.gemfile.lock index c129ffa8081..1b8ecd6a5b8 100644 --- a/gemfiles/jruby_9.4_elasticsearch_latest.gemfile.lock +++ b/gemfiles/jruby_9.4_elasticsearch_latest.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -57,10 +57,10 @@ GEM net-http ffi (1.17.0-java) hashdiff (1.1.1) - json (2.7.4-java) + json (2.7.5-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) logger (1.6.1) @@ -172,7 +172,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_graphql_1.13.gemfile b/gemfiles/jruby_9.4_graphql_1.13.gemfile index cfe6c979b3e..c3cd2c2e25f 100644 --- a/gemfiles/jruby_9.4_graphql_1.13.gemfile +++ b/gemfiles/jruby_9.4_graphql_1.13.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_graphql_1.13.gemfile.lock b/gemfiles/jruby_9.4_graphql_1.13.gemfile.lock index 4c3ada394bc..7cc7f4e636a 100644 --- a/gemfiles/jruby_9.4_graphql_1.13.gemfile.lock +++ b/gemfiles/jruby_9.4_graphql_1.13.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -113,7 +113,7 @@ GEM json (2.7.1-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) lograge (0.14.0) @@ -202,21 +202,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -300,7 +300,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_graphql_2.0.gemfile b/gemfiles/jruby_9.4_graphql_2.0.gemfile index 7269ca724a7..a7a03b295d9 100644 --- a/gemfiles/jruby_9.4_graphql_2.0.gemfile +++ b/gemfiles/jruby_9.4_graphql_2.0.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_graphql_2.0.gemfile.lock b/gemfiles/jruby_9.4_graphql_2.0.gemfile.lock index c966e71e54e..61f0c77da54 100644 --- a/gemfiles/jruby_9.4_graphql_2.0.gemfile.lock +++ b/gemfiles/jruby_9.4_graphql_2.0.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -113,7 +113,7 @@ GEM json (2.7.1-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) lograge (0.14.0) @@ -202,21 +202,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -300,7 +300,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_graphql_2.1.gemfile b/gemfiles/jruby_9.4_graphql_2.1.gemfile index 6223fb72b6a..dbb308e6d68 100644 --- a/gemfiles/jruby_9.4_graphql_2.1.gemfile +++ b/gemfiles/jruby_9.4_graphql_2.1.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_graphql_2.1.gemfile.lock b/gemfiles/jruby_9.4_graphql_2.1.gemfile.lock index 5ff1b3e47ba..7752b04da00 100644 --- a/gemfiles/jruby_9.4_graphql_2.1.gemfile.lock +++ b/gemfiles/jruby_9.4_graphql_2.1.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -114,7 +114,7 @@ GEM json (2.7.1-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) lograge (0.14.0) @@ -203,21 +203,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -301,7 +301,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_graphql_2.2.gemfile b/gemfiles/jruby_9.4_graphql_2.2.gemfile index e2faa255fbe..2cf33f5c9dd 100644 --- a/gemfiles/jruby_9.4_graphql_2.2.gemfile +++ b/gemfiles/jruby_9.4_graphql_2.2.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_graphql_2.2.gemfile.lock b/gemfiles/jruby_9.4_graphql_2.2.gemfile.lock index d3024ac91a9..fc7ca31c53f 100644 --- a/gemfiles/jruby_9.4_graphql_2.2.gemfile.lock +++ b/gemfiles/jruby_9.4_graphql_2.2.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -114,7 +114,7 @@ GEM json (2.7.1-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) lograge (0.14.0) @@ -203,21 +203,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -301,7 +301,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_graphql_2.3.gemfile b/gemfiles/jruby_9.4_graphql_2.3.gemfile index c051b20c384..07a4b363ef1 100644 --- a/gemfiles/jruby_9.4_graphql_2.3.gemfile +++ b/gemfiles/jruby_9.4_graphql_2.3.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_graphql_2.3.gemfile.lock b/gemfiles/jruby_9.4_graphql_2.3.gemfile.lock index d1b94751393..6ac6a900aa8 100644 --- a/gemfiles/jruby_9.4_graphql_2.3.gemfile.lock +++ b/gemfiles/jruby_9.4_graphql_2.3.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -116,7 +116,7 @@ GEM json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) lograge (0.14.0) @@ -303,7 +303,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_http.gemfile b/gemfiles/jruby_9.4_http.gemfile index df4f3eb2cf6..ba35996af8c 100644 --- a/gemfiles/jruby_9.4_http.gemfile +++ b/gemfiles/jruby_9.4_http.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_http.gemfile.lock b/gemfiles/jruby_9.4_http.gemfile.lock index 48a2142effd..ac574bf1521 100644 --- a/gemfiles/jruby_9.4_http.gemfile.lock +++ b/gemfiles/jruby_9.4_http.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -67,7 +67,7 @@ GEM json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -103,21 +103,21 @@ GEM netrc (~> 0.8) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -193,7 +193,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) rest-client rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_opensearch_2.gemfile b/gemfiles/jruby_9.4_opensearch_2.gemfile index d9c761989d3..63f7de094c2 100644 --- a/gemfiles/jruby_9.4_opensearch_2.gemfile +++ b/gemfiles/jruby_9.4_opensearch_2.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_opensearch_2.gemfile.lock b/gemfiles/jruby_9.4_opensearch_2.gemfile.lock index ee81fff4a71..23498567a13 100644 --- a/gemfiles/jruby_9.4_opensearch_2.gemfile.lock +++ b/gemfiles/jruby_9.4_opensearch_2.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -47,10 +47,10 @@ GEM net-http ffi (1.17.0-java) hashdiff (1.0.1) - json (2.6.3-java) + json (2.7.5-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) logger (1.6.1) @@ -90,21 +90,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -172,7 +172,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_opensearch_3.gemfile b/gemfiles/jruby_9.4_opensearch_3.gemfile index 6dec8efe307..7a492a282ec 100644 --- a/gemfiles/jruby_9.4_opensearch_3.gemfile +++ b/gemfiles/jruby_9.4_opensearch_3.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_opensearch_3.gemfile.lock b/gemfiles/jruby_9.4_opensearch_3.gemfile.lock index 5ee3e2a542f..2e4a6a9b03d 100644 --- a/gemfiles/jruby_9.4_opensearch_3.gemfile.lock +++ b/gemfiles/jruby_9.4_opensearch_3.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -47,10 +47,10 @@ GEM net-http ffi (1.17.0-java) hashdiff (1.0.1) - json (2.6.3-java) + json (2.7.5-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) logger (1.6.1) @@ -85,21 +85,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -167,7 +167,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_opensearch_latest.gemfile b/gemfiles/jruby_9.4_opensearch_latest.gemfile index d5156d01f19..3fcefd989ed 100644 --- a/gemfiles/jruby_9.4_opensearch_latest.gemfile +++ b/gemfiles/jruby_9.4_opensearch_latest.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_opensearch_latest.gemfile.lock b/gemfiles/jruby_9.4_opensearch_latest.gemfile.lock index bd3c5b699df..340f79c1a7a 100644 --- a/gemfiles/jruby_9.4_opensearch_latest.gemfile.lock +++ b/gemfiles/jruby_9.4_opensearch_latest.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -49,10 +49,10 @@ GEM net-http ffi (1.17.0-java) hashdiff (1.1.1) - json (2.7.4-java) + json (2.7.5-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) logger (1.6.1) @@ -167,7 +167,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_rack_1.gemfile b/gemfiles/jruby_9.4_rack_1.gemfile index 2ac7a471a94..f3daa5a2664 100644 --- a/gemfiles/jruby_9.4_rack_1.gemfile +++ b/gemfiles/jruby_9.4_rack_1.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_rack_1.gemfile.lock b/gemfiles/jruby_9.4_rack_1.gemfile.lock index f453ac4e4f4..b228fe1f032 100644 --- a/gemfiles/jruby_9.4_rack_1.gemfile.lock +++ b/gemfiles/jruby_9.4_rack_1.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -43,7 +43,7 @@ GEM json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -75,21 +75,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -158,7 +158,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_rack_2.gemfile b/gemfiles/jruby_9.4_rack_2.gemfile index 8ec0cdd63e8..383efe31401 100644 --- a/gemfiles/jruby_9.4_rack_2.gemfile +++ b/gemfiles/jruby_9.4_rack_2.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_rack_2.gemfile.lock b/gemfiles/jruby_9.4_rack_2.gemfile.lock index fe8b503680e..c8a57c9d9e4 100644 --- a/gemfiles/jruby_9.4_rack_2.gemfile.lock +++ b/gemfiles/jruby_9.4_rack_2.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -43,7 +43,7 @@ GEM json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -75,21 +75,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -158,7 +158,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_rack_3.gemfile b/gemfiles/jruby_9.4_rack_3.gemfile index 871fae7bdd2..5e4bad2b1ab 100644 --- a/gemfiles/jruby_9.4_rack_3.gemfile +++ b/gemfiles/jruby_9.4_rack_3.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_rack_3.gemfile.lock b/gemfiles/jruby_9.4_rack_3.gemfile.lock index 086801ec347..7b7ad6ab456 100644 --- a/gemfiles/jruby_9.4_rack_3.gemfile.lock +++ b/gemfiles/jruby_9.4_rack_3.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -43,7 +43,7 @@ GEM json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -75,21 +75,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -158,7 +158,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_rack_latest.gemfile b/gemfiles/jruby_9.4_rack_latest.gemfile index 6f993d86bf2..44d142b8aa9 100644 --- a/gemfiles/jruby_9.4_rack_latest.gemfile +++ b/gemfiles/jruby_9.4_rack_latest.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_rack_latest.gemfile.lock b/gemfiles/jruby_9.4_rack_latest.gemfile.lock index ab889d25172..5159e33106e 100644 --- a/gemfiles/jruby_9.4_rack_latest.gemfile.lock +++ b/gemfiles/jruby_9.4_rack_latest.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -46,7 +46,7 @@ GEM json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -160,7 +160,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_rails61_mysql2.gemfile b/gemfiles/jruby_9.4_rails61_mysql2.gemfile index 0fee78abf93..6505f121637 100644 --- a/gemfiles/jruby_9.4_rails61_mysql2.gemfile +++ b/gemfiles/jruby_9.4_rails61_mysql2.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_rails61_mysql2.gemfile.lock b/gemfiles/jruby_9.4_rails61_mysql2.gemfile.lock index 210f7269065..e4d1e4e9de1 100644 --- a/gemfiles/jruby_9.4_rails61_mysql2.gemfile.lock +++ b/gemfiles/jruby_9.4_rails61_mysql2.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -120,7 +120,7 @@ GEM json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) lograge (0.14.0) @@ -308,7 +308,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_rails61_postgres.gemfile b/gemfiles/jruby_9.4_rails61_postgres.gemfile index cab78f2c82a..a59f4aa0189 100644 --- a/gemfiles/jruby_9.4_rails61_postgres.gemfile +++ b/gemfiles/jruby_9.4_rails61_postgres.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_rails61_postgres.gemfile.lock b/gemfiles/jruby_9.4_rails61_postgres.gemfile.lock index 90ccd42deff..e5a44e979f2 100644 --- a/gemfiles/jruby_9.4_rails61_postgres.gemfile.lock +++ b/gemfiles/jruby_9.4_rails61_postgres.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -116,7 +116,7 @@ GEM json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) lograge (0.12.0) @@ -202,21 +202,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -300,7 +300,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_rails61_postgres_redis.gemfile b/gemfiles/jruby_9.4_rails61_postgres_redis.gemfile index 16e91be9716..6e04eeea277 100644 --- a/gemfiles/jruby_9.4_rails61_postgres_redis.gemfile +++ b/gemfiles/jruby_9.4_rails61_postgres_redis.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_rails61_postgres_redis.gemfile.lock b/gemfiles/jruby_9.4_rails61_postgres_redis.gemfile.lock index 67f65c719f4..6b00843fe57 100644 --- a/gemfiles/jruby_9.4_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/jruby_9.4_rails61_postgres_redis.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -116,7 +116,7 @@ GEM json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) lograge (0.12.0) @@ -203,21 +203,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -302,7 +302,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 4) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile b/gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile index eba6ea3dfae..536abcefa75 100644 --- a/gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile.lock index 94cf365367c..d87c9befc13 100644 --- a/gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/jruby_9.4_rails61_postgres_sidekiq.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -117,7 +117,7 @@ GEM json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) lograge (0.12.0) @@ -209,21 +209,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -315,7 +315,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_rails61_semantic_logger.gemfile b/gemfiles/jruby_9.4_rails61_semantic_logger.gemfile index 8ef4b26aeee..61139a69ff5 100644 --- a/gemfiles/jruby_9.4_rails61_semantic_logger.gemfile +++ b/gemfiles/jruby_9.4_rails61_semantic_logger.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_rails61_semantic_logger.gemfile.lock b/gemfiles/jruby_9.4_rails61_semantic_logger.gemfile.lock index 07ecdc242c0..20f981c8257 100644 --- a/gemfiles/jruby_9.4_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/jruby_9.4_rails61_semantic_logger.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -116,7 +116,7 @@ GEM json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) loofah (2.19.1) @@ -199,21 +199,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -299,7 +299,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_redis_3.gemfile b/gemfiles/jruby_9.4_redis_3.gemfile index 2ea18317459..8ae3e7f59eb 100644 --- a/gemfiles/jruby_9.4_redis_3.gemfile +++ b/gemfiles/jruby_9.4_redis_3.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_redis_3.gemfile.lock b/gemfiles/jruby_9.4_redis_3.gemfile.lock index 83eefec9bc4..fd765470840 100644 --- a/gemfiles/jruby_9.4_redis_3.gemfile.lock +++ b/gemfiles/jruby_9.4_redis_3.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -43,7 +43,7 @@ GEM json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -71,21 +71,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -152,7 +152,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 3) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_redis_4.gemfile b/gemfiles/jruby_9.4_redis_4.gemfile index 47d7d1036c1..592f0a50a38 100644 --- a/gemfiles/jruby_9.4_redis_4.gemfile +++ b/gemfiles/jruby_9.4_redis_4.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_redis_4.gemfile.lock b/gemfiles/jruby_9.4_redis_4.gemfile.lock index 9a601cd15be..bab8fdf61d2 100644 --- a/gemfiles/jruby_9.4_redis_4.gemfile.lock +++ b/gemfiles/jruby_9.4_redis_4.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -43,7 +43,7 @@ GEM json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -71,21 +71,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -152,7 +152,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 4) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_redis_5.gemfile b/gemfiles/jruby_9.4_redis_5.gemfile index a5ef3f55cca..c780545add7 100644 --- a/gemfiles/jruby_9.4_redis_5.gemfile +++ b/gemfiles/jruby_9.4_redis_5.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_redis_5.gemfile.lock b/gemfiles/jruby_9.4_redis_5.gemfile.lock index fe291e58efa..565090a4b8d 100644 --- a/gemfiles/jruby_9.4_redis_5.gemfile.lock +++ b/gemfiles/jruby_9.4_redis_5.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -44,7 +44,7 @@ GEM json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -75,21 +75,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -156,7 +156,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 5) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_relational_db.gemfile b/gemfiles/jruby_9.4_relational_db.gemfile index 9775b78b911..9e8114c5d10 100644 --- a/gemfiles/jruby_9.4_relational_db.gemfile +++ b/gemfiles/jruby_9.4_relational_db.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_relational_db.gemfile.lock b/gemfiles/jruby_9.4_relational_db.gemfile.lock index 1efa7c1f34d..314e96bbc18 100644 --- a/gemfiles/jruby_9.4_relational_db.gemfile.lock +++ b/gemfiles/jruby_9.4_relational_db.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -75,7 +75,7 @@ GEM json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) makara (0.6.0.pre) @@ -198,7 +198,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_resque2_redis3.gemfile b/gemfiles/jruby_9.4_resque2_redis3.gemfile index a6b91df1676..5e824fa6bc4 100644 --- a/gemfiles/jruby_9.4_resque2_redis3.gemfile +++ b/gemfiles/jruby_9.4_resque2_redis3.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_resque2_redis3.gemfile.lock b/gemfiles/jruby_9.4_resque2_redis3.gemfile.lock index 2ff1e16411a..60839430ba7 100644 --- a/gemfiles/jruby_9.4_resque2_redis3.gemfile.lock +++ b/gemfiles/jruby_9.4_resque2_redis3.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -43,7 +43,7 @@ GEM json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -85,21 +85,21 @@ GEM sinatra (>= 0.9.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -174,7 +174,7 @@ DEPENDENCIES redis (< 4.0) resque (>= 2.0) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_resque2_redis4.gemfile b/gemfiles/jruby_9.4_resque2_redis4.gemfile index 860e44b0670..002335b8c41 100644 --- a/gemfiles/jruby_9.4_resque2_redis4.gemfile +++ b/gemfiles/jruby_9.4_resque2_redis4.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_resque2_redis4.gemfile.lock b/gemfiles/jruby_9.4_resque2_redis4.gemfile.lock index c87a2eacc0f..457707c28fa 100644 --- a/gemfiles/jruby_9.4_resque2_redis4.gemfile.lock +++ b/gemfiles/jruby_9.4_resque2_redis4.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -44,7 +44,7 @@ GEM json (2.6.3-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -89,21 +89,21 @@ GEM sinatra (>= 0.9.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.0) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.2) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -178,7 +178,7 @@ DEPENDENCIES redis (>= 4.0) resque (>= 2.0) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_sinatra_2.gemfile b/gemfiles/jruby_9.4_sinatra_2.gemfile index dfcb0751a80..21c6b623d9d 100644 --- a/gemfiles/jruby_9.4_sinatra_2.gemfile +++ b/gemfiles/jruby_9.4_sinatra_2.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_sinatra_2.gemfile.lock b/gemfiles/jruby_9.4_sinatra_2.gemfile.lock index a3ad70a646b..3fc5126b459 100644 --- a/gemfiles/jruby_9.4_sinatra_2.gemfile.lock +++ b/gemfiles/jruby_9.4_sinatra_2.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -46,7 +46,7 @@ GEM json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -172,7 +172,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_sinatra_3.gemfile b/gemfiles/jruby_9.4_sinatra_3.gemfile index 551289da4cd..63b6a1fd0de 100644 --- a/gemfiles/jruby_9.4_sinatra_3.gemfile +++ b/gemfiles/jruby_9.4_sinatra_3.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_sinatra_3.gemfile.lock b/gemfiles/jruby_9.4_sinatra_3.gemfile.lock index ab939e5ba07..723ed8718d0 100644 --- a/gemfiles/jruby_9.4_sinatra_3.gemfile.lock +++ b/gemfiles/jruby_9.4_sinatra_3.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -47,7 +47,7 @@ GEM json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -174,7 +174,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_sinatra_4.gemfile b/gemfiles/jruby_9.4_sinatra_4.gemfile index 454ec1ef763..10856fa8f4b 100644 --- a/gemfiles/jruby_9.4_sinatra_4.gemfile +++ b/gemfiles/jruby_9.4_sinatra_4.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_sinatra_4.gemfile.lock b/gemfiles/jruby_9.4_sinatra_4.gemfile.lock index 5ec1a75f657..a279ec46006 100644 --- a/gemfiles/jruby_9.4_sinatra_4.gemfile.lock +++ b/gemfiles/jruby_9.4_sinatra_4.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -47,7 +47,7 @@ GEM json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -177,7 +177,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_stripe_10.gemfile b/gemfiles/jruby_9.4_stripe_10.gemfile index ab01c3a465f..98110c941ef 100644 --- a/gemfiles/jruby_9.4_stripe_10.gemfile +++ b/gemfiles/jruby_9.4_stripe_10.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_stripe_10.gemfile.lock b/gemfiles/jruby_9.4_stripe_10.gemfile.lock index 2ecad0b04d5..f582c29e496 100644 --- a/gemfiles/jruby_9.4_stripe_10.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_10.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -46,7 +46,7 @@ GEM json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -155,7 +155,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_stripe_11.gemfile b/gemfiles/jruby_9.4_stripe_11.gemfile index b7e212b8230..cf41dde7cb0 100644 --- a/gemfiles/jruby_9.4_stripe_11.gemfile +++ b/gemfiles/jruby_9.4_stripe_11.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_stripe_11.gemfile.lock b/gemfiles/jruby_9.4_stripe_11.gemfile.lock index 00709d9eafe..98ec02125d0 100644 --- a/gemfiles/jruby_9.4_stripe_11.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_11.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -46,7 +46,7 @@ GEM json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -155,7 +155,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_stripe_12.gemfile b/gemfiles/jruby_9.4_stripe_12.gemfile index dac0b629652..132269d700c 100644 --- a/gemfiles/jruby_9.4_stripe_12.gemfile +++ b/gemfiles/jruby_9.4_stripe_12.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_stripe_12.gemfile.lock b/gemfiles/jruby_9.4_stripe_12.gemfile.lock index 60091f9bd80..15ab49fc0ad 100644 --- a/gemfiles/jruby_9.4_stripe_12.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_12.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -46,7 +46,7 @@ GEM json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -155,7 +155,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_stripe_7.gemfile b/gemfiles/jruby_9.4_stripe_7.gemfile index 804472d67c7..2fb3945e9eb 100644 --- a/gemfiles/jruby_9.4_stripe_7.gemfile +++ b/gemfiles/jruby_9.4_stripe_7.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_stripe_7.gemfile.lock b/gemfiles/jruby_9.4_stripe_7.gemfile.lock index bc95f0b8f6a..06faf35e76f 100644 --- a/gemfiles/jruby_9.4_stripe_7.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_7.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -46,7 +46,7 @@ GEM json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -155,7 +155,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_stripe_8.gemfile b/gemfiles/jruby_9.4_stripe_8.gemfile index 7e2240a3420..f9dc53f53ef 100644 --- a/gemfiles/jruby_9.4_stripe_8.gemfile +++ b/gemfiles/jruby_9.4_stripe_8.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_stripe_8.gemfile.lock b/gemfiles/jruby_9.4_stripe_8.gemfile.lock index 78ff1bb8b99..39972001f9c 100644 --- a/gemfiles/jruby_9.4_stripe_8.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_8.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -46,7 +46,7 @@ GEM json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -155,7 +155,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_stripe_9.gemfile b/gemfiles/jruby_9.4_stripe_9.gemfile index 4ae66018fea..d50876f24c9 100644 --- a/gemfiles/jruby_9.4_stripe_9.gemfile +++ b/gemfiles/jruby_9.4_stripe_9.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_stripe_9.gemfile.lock b/gemfiles/jruby_9.4_stripe_9.gemfile.lock index feefae0887c..05c47bdddb5 100644 --- a/gemfiles/jruby_9.4_stripe_9.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_9.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -46,7 +46,7 @@ GEM json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -155,7 +155,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_stripe_latest.gemfile b/gemfiles/jruby_9.4_stripe_latest.gemfile index 67feeb3c754..0806194c36d 100644 --- a/gemfiles/jruby_9.4_stripe_latest.gemfile +++ b/gemfiles/jruby_9.4_stripe_latest.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_stripe_latest.gemfile.lock b/gemfiles/jruby_9.4_stripe_latest.gemfile.lock index 27b20c8fdd5..1d72063daa4 100644 --- a/gemfiles/jruby_9.4_stripe_latest.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_latest.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -46,7 +46,7 @@ GEM json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -123,7 +123,7 @@ GEM simplecov_json_formatter (0.1.4) spoon (0.0.6) ffi - stripe (13.0.2) + stripe (13.1.0) thor (1.3.2) unicode-display_width (2.6.0) warning (1.4.0) @@ -153,7 +153,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/jruby_9.4_stripe_min.gemfile b/gemfiles/jruby_9.4_stripe_min.gemfile index b27998c9818..35c7e32754a 100644 --- a/gemfiles/jruby_9.4_stripe_min.gemfile +++ b/gemfiles/jruby_9.4_stripe_min.gemfile @@ -15,7 +15,7 @@ gem "pry" gem "pry-debugger-jruby" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/jruby_9.4_stripe_min.gemfile.lock b/gemfiles/jruby_9.4_stripe_min.gemfile.lock index 42d77568673..12df1388f59 100644 --- a/gemfiles/jruby_9.4_stripe_min.gemfile.lock +++ b/gemfiles/jruby_9.4_stripe_min.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -46,7 +46,7 @@ GEM json (2.7.2-java) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) + libdatadog (14.1.0.1.0) libddwaf (1.15.0.0.0-java) ffi (~> 1.0) memory_profiler (0.9.14) @@ -153,7 +153,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_activesupport.gemfile b/gemfiles/ruby_2.5_activesupport.gemfile index c80652aaa7d..d4480f2dc0e 100644 --- a/gemfiles/ruby_2.5_activesupport.gemfile +++ b/gemfiles/ruby_2.5_activesupport.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_activesupport.gemfile.lock b/gemfiles/ruby_2.5_activesupport.gemfile.lock index 75e168724b6..bbb7225445c 100644 --- a/gemfiles/ruby_2.5_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.5_activesupport.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -109,8 +109,8 @@ GEM addressable (>= 2.4) jsonapi-renderer (0.2.2) king_konf (1.0.1) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -179,21 +179,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -248,7 +248,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_aws.gemfile b/gemfiles/ruby_2.5_aws.gemfile index cfa77634ec7..93d64773b0b 100644 --- a/gemfiles/ruby_2.5_aws.gemfile +++ b/gemfiles/ruby_2.5_aws.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_aws.gemfile.lock b/gemfiles/ruby_2.5_aws.gemfile.lock index 3cb30a0e462..9998b0ce5f1 100644 --- a/gemfiles/ruby_2.5_aws.gemfile.lock +++ b/gemfiles/ruby_2.5_aws.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -1470,8 +1470,8 @@ GEM jmespath (1.6.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -1494,21 +1494,21 @@ GEM rake rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -1555,7 +1555,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_contrib.gemfile b/gemfiles/ruby_2.5_contrib.gemfile index 095636c9897..24db51c4027 100644 --- a/gemfiles/ruby_2.5_contrib.gemfile +++ b/gemfiles/ruby_2.5_contrib.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 12.3" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_contrib.gemfile.lock b/gemfiles/ruby_2.5_contrib.gemfile.lock index 86fdd5b4673..0357a1153c3 100644 --- a/gemfiles/ruby_2.5_contrib.gemfile.lock +++ b/gemfiles/ruby_2.5_contrib.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -63,8 +63,8 @@ GEM hashdiff (1.0.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -110,21 +110,21 @@ GEM strscan (>= 3.0.9) roda (3.70.0) rack - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -202,7 +202,7 @@ DEPENDENCIES resque rexml (>= 3.2.7) roda (>= 2.0.0) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_contrib_old.gemfile b/gemfiles/ruby_2.5_contrib_old.gemfile index ee43896ca7d..77fa4ecba7f 100644 --- a/gemfiles/ruby_2.5_contrib_old.gemfile +++ b/gemfiles/ruby_2.5_contrib_old.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_contrib_old.gemfile.lock b/gemfiles/ruby_2.5_contrib_old.gemfile.lock index 85a8e33ffeb..2d56b33525e 100644 --- a/gemfiles/ruby_2.5_contrib_old.gemfile.lock +++ b/gemfiles/ruby_2.5_contrib_old.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -59,8 +59,8 @@ GEM hitimes (1.3.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -108,21 +108,21 @@ GEM redis (3.3.5) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -185,7 +185,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_core_old.gemfile b/gemfiles/ruby_2.5_core_old.gemfile index 354fd4b7aa9..26093d365fa 100644 --- a/gemfiles/ruby_2.5_core_old.gemfile +++ b/gemfiles/ruby_2.5_core_old.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_core_old.gemfile.lock b/gemfiles/ruby_2.5_core_old.gemfile.lock index 35e0a95123e..60a768fcfb1 100644 --- a/gemfiles/ruby_2.5_core_old.gemfile.lock +++ b/gemfiles/ruby_2.5_core_old.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -48,8 +48,8 @@ GEM hashdiff (1.0.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -72,21 +72,21 @@ GEM rake rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -128,7 +128,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_elasticsearch_7.gemfile b/gemfiles/ruby_2.5_elasticsearch_7.gemfile index 1b456fa603d..d51f9f0cdab 100644 --- a/gemfiles/ruby_2.5_elasticsearch_7.gemfile +++ b/gemfiles/ruby_2.5_elasticsearch_7.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_elasticsearch_7.gemfile.lock b/gemfiles/ruby_2.5_elasticsearch_7.gemfile.lock index 8a3f2012743..e701e061a6d 100644 --- a/gemfiles/ruby_2.5_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_2.5_elasticsearch_7.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -82,8 +82,8 @@ GEM hashdiff (1.0.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -109,21 +109,21 @@ GEM rake rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -167,7 +167,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_elasticsearch_8.gemfile b/gemfiles/ruby_2.5_elasticsearch_8.gemfile index 5c8e038e707..e85b4cfbeab 100644 --- a/gemfiles/ruby_2.5_elasticsearch_8.gemfile +++ b/gemfiles/ruby_2.5_elasticsearch_8.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_elasticsearch_8.gemfile.lock b/gemfiles/ruby_2.5_elasticsearch_8.gemfile.lock index edcb1724cc0..c7c87d9444a 100644 --- a/gemfiles/ruby_2.5_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_2.5_elasticsearch_8.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -80,8 +80,8 @@ GEM hashdiff (1.0.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -107,21 +107,21 @@ GEM rake rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -165,7 +165,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_elasticsearch_latest.gemfile b/gemfiles/ruby_2.5_elasticsearch_latest.gemfile index 9e358e30ee8..d9ec91c7a0d 100644 --- a/gemfiles/ruby_2.5_elasticsearch_latest.gemfile +++ b/gemfiles/ruby_2.5_elasticsearch_latest.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_2.5_elasticsearch_latest.gemfile.lock index 506b245b14a..0f34ab02c61 100644 --- a/gemfiles/ruby_2.5_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_2.5_elasticsearch_latest.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -82,8 +82,8 @@ GEM hashdiff (1.1.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -165,7 +165,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_graphql_2.0.gemfile b/gemfiles/ruby_2.5_graphql_2.0.gemfile index ac12050c9f8..d8d24a819b2 100644 --- a/gemfiles/ruby_2.5_graphql_2.0.gemfile +++ b/gemfiles/ruby_2.5_graphql_2.0.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_graphql_2.0.gemfile.lock b/gemfiles/ruby_2.5_graphql_2.0.gemfile.lock index 171eec25c77..1b554036a9f 100644 --- a/gemfiles/ruby_2.5_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_2.5_graphql_2.0.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -119,8 +119,8 @@ GEM io-wait (0.3.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -213,21 +213,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -287,7 +287,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_hanami_1.gemfile b/gemfiles/ruby_2.5_hanami_1.gemfile index 21ae4198b30..154400a2a76 100644 --- a/gemfiles/ruby_2.5_hanami_1.gemfile +++ b/gemfiles/ruby_2.5_hanami_1.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_hanami_1.gemfile.lock b/gemfiles/ruby_2.5_hanami_1.gemfile.lock index 2ee89aeed5b..3edfab37926 100644 --- a/gemfiles/ruby_2.5_hanami_1.gemfile.lock +++ b/gemfiles/ruby_2.5_hanami_1.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -124,8 +124,8 @@ GEM io-wait (0.3.0) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -170,21 +170,21 @@ GEM rake rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -234,7 +234,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_http.gemfile b/gemfiles/ruby_2.5_http.gemfile index 06beec071b0..1239edc8b6b 100644 --- a/gemfiles/ruby_2.5_http.gemfile +++ b/gemfiles/ruby_2.5_http.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_http.gemfile.lock b/gemfiles/ruby_2.5_http.gemfile.lock index eb9e23d693b..78d7a6531b4 100644 --- a/gemfiles/ruby_2.5_http.gemfile.lock +++ b/gemfiles/ruby_2.5_http.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -89,8 +89,8 @@ GEM httpclient (2.8.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -126,21 +126,21 @@ GEM netrc (~> 0.8) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -194,7 +194,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) rest-client rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_opensearch_2.gemfile b/gemfiles/ruby_2.5_opensearch_2.gemfile index a69f68d0f3b..24ecd5240ed 100644 --- a/gemfiles/ruby_2.5_opensearch_2.gemfile +++ b/gemfiles/ruby_2.5_opensearch_2.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_opensearch_2.gemfile.lock b/gemfiles/ruby_2.5_opensearch_2.gemfile.lock index b5694d6eab1..abc5057b3ba 100644 --- a/gemfiles/ruby_2.5_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_2.5_opensearch_2.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -72,8 +72,8 @@ GEM hashdiff (1.0.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -107,21 +107,21 @@ GEM rake rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -165,7 +165,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_opensearch_3.gemfile b/gemfiles/ruby_2.5_opensearch_3.gemfile index 43cd2fce29f..4871a31ec1d 100644 --- a/gemfiles/ruby_2.5_opensearch_3.gemfile +++ b/gemfiles/ruby_2.5_opensearch_3.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_opensearch_3.gemfile.lock b/gemfiles/ruby_2.5_opensearch_3.gemfile.lock index af4450314a6..c4d6e44be7e 100644 --- a/gemfiles/ruby_2.5_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_2.5_opensearch_3.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -72,8 +72,8 @@ GEM hashdiff (1.0.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -102,21 +102,21 @@ GEM rake rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -160,7 +160,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_opensearch_latest.gemfile b/gemfiles/ruby_2.5_opensearch_latest.gemfile index d27d8066df5..7d93c8cfa52 100644 --- a/gemfiles/ruby_2.5_opensearch_latest.gemfile +++ b/gemfiles/ruby_2.5_opensearch_latest.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_opensearch_latest.gemfile.lock b/gemfiles/ruby_2.5_opensearch_latest.gemfile.lock index 1b374808a9b..7c675d29b63 100644 --- a/gemfiles/ruby_2.5_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_2.5_opensearch_latest.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -74,8 +74,8 @@ GEM hashdiff (1.1.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -160,7 +160,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_rack_1.gemfile b/gemfiles/ruby_2.5_rack_1.gemfile index 33e46fe491b..df6c84120cd 100644 --- a/gemfiles/ruby_2.5_rack_1.gemfile +++ b/gemfiles/ruby_2.5_rack_1.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_rack_1.gemfile.lock b/gemfiles/ruby_2.5_rack_1.gemfile.lock index 69ae222f804..9d9d6a76f94 100644 --- a/gemfiles/ruby_2.5_rack_1.gemfile.lock +++ b/gemfiles/ruby_2.5_rack_1.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -48,8 +48,8 @@ GEM hashdiff (1.0.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -77,21 +77,21 @@ GEM rake rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -136,7 +136,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_rack_2.gemfile b/gemfiles/ruby_2.5_rack_2.gemfile index 01379fded20..570ae2730ad 100644 --- a/gemfiles/ruby_2.5_rack_2.gemfile +++ b/gemfiles/ruby_2.5_rack_2.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_rack_2.gemfile.lock b/gemfiles/ruby_2.5_rack_2.gemfile.lock index 0046297bf0d..e256332f673 100644 --- a/gemfiles/ruby_2.5_rack_2.gemfile.lock +++ b/gemfiles/ruby_2.5_rack_2.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -48,8 +48,8 @@ GEM hashdiff (1.0.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -77,21 +77,21 @@ GEM rake rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -136,7 +136,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_rack_3.gemfile b/gemfiles/ruby_2.5_rack_3.gemfile index 6bb585580b6..ff11783659f 100644 --- a/gemfiles/ruby_2.5_rack_3.gemfile +++ b/gemfiles/ruby_2.5_rack_3.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_rack_3.gemfile.lock b/gemfiles/ruby_2.5_rack_3.gemfile.lock index 5cca6b01b8d..fcbb0426656 100644 --- a/gemfiles/ruby_2.5_rack_3.gemfile.lock +++ b/gemfiles/ruby_2.5_rack_3.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -48,8 +48,8 @@ GEM hashdiff (1.0.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -77,21 +77,21 @@ GEM rake rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -136,7 +136,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_rack_latest.gemfile b/gemfiles/ruby_2.5_rack_latest.gemfile index 5bb1ef62d49..72c6f77ace6 100644 --- a/gemfiles/ruby_2.5_rack_latest.gemfile +++ b/gemfiles/ruby_2.5_rack_latest.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_rack_latest.gemfile.lock b/gemfiles/ruby_2.5_rack_latest.gemfile.lock index ffc730104bc..06395236165 100644 --- a/gemfiles/ruby_2.5_rack_latest.gemfile.lock +++ b/gemfiles/ruby_2.5_rack_latest.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -51,8 +51,8 @@ GEM hashdiff (1.1.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -138,7 +138,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_rails4_mysql2.gemfile b/gemfiles/ruby_2.5_rails4_mysql2.gemfile index fc99e1fe0fd..c28da5b5b25 100644 --- a/gemfiles/ruby_2.5_rails4_mysql2.gemfile +++ b/gemfiles/ruby_2.5_rails4_mysql2.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_rails4_mysql2.gemfile.lock b/gemfiles/ruby_2.5_rails4_mysql2.gemfile.lock index 62f8b24d635..bcb87249791 100644 --- a/gemfiles/ruby_2.5_rails4_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.5_rails4_mysql2.gemfile.lock @@ -67,9 +67,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -115,8 +115,8 @@ GEM io-wait (0.3.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -189,21 +189,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -259,7 +259,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_rails4_postgres.gemfile b/gemfiles/ruby_2.5_rails4_postgres.gemfile index 878b6709df2..04520f3e91b 100644 --- a/gemfiles/ruby_2.5_rails4_postgres.gemfile +++ b/gemfiles/ruby_2.5_rails4_postgres.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_rails4_postgres.gemfile.lock b/gemfiles/ruby_2.5_rails4_postgres.gemfile.lock index fc5f373beea..bb031048c34 100644 --- a/gemfiles/ruby_2.5_rails4_postgres.gemfile.lock +++ b/gemfiles/ruby_2.5_rails4_postgres.gemfile.lock @@ -67,9 +67,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -115,8 +115,8 @@ GEM io-wait (0.3.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -189,21 +189,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -259,7 +259,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_rails4_postgres_redis.gemfile b/gemfiles/ruby_2.5_rails4_postgres_redis.gemfile index 7571640b92e..6e07e69303a 100644 --- a/gemfiles/ruby_2.5_rails4_postgres_redis.gemfile +++ b/gemfiles/ruby_2.5_rails4_postgres_redis.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_rails4_postgres_redis.gemfile.lock b/gemfiles/ruby_2.5_rails4_postgres_redis.gemfile.lock index b1f20dd3f07..05fc75f127b 100644 --- a/gemfiles/ruby_2.5_rails4_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.5_rails4_postgres_redis.gemfile.lock @@ -67,9 +67,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -115,8 +115,8 @@ GEM io-wait (0.3.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -206,21 +206,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -278,7 +278,7 @@ DEPENDENCIES redis (< 4.0) redis-rails rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_rails4_postgres_sidekiq.gemfile b/gemfiles/ruby_2.5_rails4_postgres_sidekiq.gemfile index 2ca7d6df973..8ce9e27bad5 100644 --- a/gemfiles/ruby_2.5_rails4_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.5_rails4_postgres_sidekiq.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_rails4_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.5_rails4_postgres_sidekiq.gemfile.lock index 9c93bc24717..5c800dedc90 100644 --- a/gemfiles/ruby_2.5_rails4_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.5_rails4_postgres_sidekiq.gemfile.lock @@ -64,9 +64,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -116,8 +116,8 @@ GEM io-wait (0.3.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -193,21 +193,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -269,7 +269,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_rails4_semantic_logger.gemfile b/gemfiles/ruby_2.5_rails4_semantic_logger.gemfile index 21f630ef256..12d796ba704 100644 --- a/gemfiles/ruby_2.5_rails4_semantic_logger.gemfile +++ b/gemfiles/ruby_2.5_rails4_semantic_logger.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_rails4_semantic_logger.gemfile.lock b/gemfiles/ruby_2.5_rails4_semantic_logger.gemfile.lock index 98701a2c975..1b918d44f0c 100644 --- a/gemfiles/ruby_2.5_rails4_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.5_rails4_semantic_logger.gemfile.lock @@ -67,9 +67,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -115,8 +115,8 @@ GEM io-wait (0.3.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -186,21 +186,21 @@ GEM rake rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -258,7 +258,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_rails5_mysql2.gemfile b/gemfiles/ruby_2.5_rails5_mysql2.gemfile index 8b5e4e9d793..056492e5e8c 100644 --- a/gemfiles/ruby_2.5_rails5_mysql2.gemfile +++ b/gemfiles/ruby_2.5_rails5_mysql2.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_rails5_mysql2.gemfile.lock b/gemfiles/ruby_2.5_rails5_mysql2.gemfile.lock index 4db83ef8dcc..80f1d0c0aab 100644 --- a/gemfiles/ruby_2.5_rails5_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.5_rails5_mysql2.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -97,8 +97,8 @@ GEM concurrent-ruby (~> 1.0) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -172,21 +172,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -245,7 +245,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_rails5_postgres.gemfile b/gemfiles/ruby_2.5_rails5_postgres.gemfile index 6b410076a18..737f9fbe61e 100644 --- a/gemfiles/ruby_2.5_rails5_postgres.gemfile +++ b/gemfiles/ruby_2.5_rails5_postgres.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_rails5_postgres.gemfile.lock b/gemfiles/ruby_2.5_rails5_postgres.gemfile.lock index 7042f5ec1df..0c9a18e012a 100644 --- a/gemfiles/ruby_2.5_rails5_postgres.gemfile.lock +++ b/gemfiles/ruby_2.5_rails5_postgres.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -99,8 +99,8 @@ GEM io-wait (0.3.0) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -190,21 +190,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -263,7 +263,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_rails5_postgres_redis.gemfile b/gemfiles/ruby_2.5_rails5_postgres_redis.gemfile index 00548f58b5a..5a19b7827fb 100644 --- a/gemfiles/ruby_2.5_rails5_postgres_redis.gemfile +++ b/gemfiles/ruby_2.5_rails5_postgres_redis.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_rails5_postgres_redis.gemfile.lock b/gemfiles/ruby_2.5_rails5_postgres_redis.gemfile.lock index 7fc2bb40185..704c3590e1f 100644 --- a/gemfiles/ruby_2.5_rails5_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.5_rails5_postgres_redis.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -100,8 +100,8 @@ GEM io-wait (0.3.0) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -195,21 +195,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -269,7 +269,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (>= 4.0.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_rails5_postgres_redis_activesupport.gemfile b/gemfiles/ruby_2.5_rails5_postgres_redis_activesupport.gemfile index 491603d70c9..a3fd7dca25d 100644 --- a/gemfiles/ruby_2.5_rails5_postgres_redis_activesupport.gemfile +++ b/gemfiles/ruby_2.5_rails5_postgres_redis_activesupport.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.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 4f75231d6e5..ca587e3e7de 100644 --- a/gemfiles/ruby_2.5_rails5_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.5_rails5_postgres_redis_activesupport.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -99,8 +99,8 @@ GEM io-wait (0.3.0) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -207,21 +207,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -283,7 +283,7 @@ DEPENDENCIES redis-rails redis-store (~> 1.9) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_rails5_postgres_sidekiq.gemfile b/gemfiles/ruby_2.5_rails5_postgres_sidekiq.gemfile index 5d734c46ab8..0f0a92b2ec8 100644 --- a/gemfiles/ruby_2.5_rails5_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.5_rails5_postgres_sidekiq.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_rails5_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.5_rails5_postgres_sidekiq.gemfile.lock index 19688d1df94..dcdecceaf39 100644 --- a/gemfiles/ruby_2.5_rails5_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.5_rails5_postgres_sidekiq.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -100,8 +100,8 @@ GEM io-wait (0.3.0) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -192,21 +192,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -270,7 +270,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_rails5_semantic_logger.gemfile b/gemfiles/ruby_2.5_rails5_semantic_logger.gemfile index ef1fa76243e..48831650fce 100644 --- a/gemfiles/ruby_2.5_rails5_semantic_logger.gemfile +++ b/gemfiles/ruby_2.5_rails5_semantic_logger.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_rails5_semantic_logger.gemfile.lock b/gemfiles/ruby_2.5_rails5_semantic_logger.gemfile.lock index a44309f7f40..f0c59cec807 100644 --- a/gemfiles/ruby_2.5_rails5_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.5_rails5_semantic_logger.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -99,8 +99,8 @@ GEM io-wait (0.3.0) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -187,21 +187,21 @@ GEM rake rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -262,7 +262,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_rails61_mysql2.gemfile b/gemfiles/ruby_2.5_rails61_mysql2.gemfile index aec19cb57e2..539a099b221 100644 --- a/gemfiles/ruby_2.5_rails61_mysql2.gemfile +++ b/gemfiles/ruby_2.5_rails61_mysql2.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_rails61_mysql2.gemfile.lock b/gemfiles/ruby_2.5_rails61_mysql2.gemfile.lock index 6760635289c..976a649164c 100644 --- a/gemfiles/ruby_2.5_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.5_rails61_mysql2.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -114,8 +114,8 @@ GEM concurrent-ruby (~> 1.0) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -191,21 +191,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -264,7 +264,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_rails61_postgres.gemfile b/gemfiles/ruby_2.5_rails61_postgres.gemfile index b9929ec25b7..eaa53159e4f 100644 --- a/gemfiles/ruby_2.5_rails61_postgres.gemfile +++ b/gemfiles/ruby_2.5_rails61_postgres.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_rails61_postgres.gemfile.lock b/gemfiles/ruby_2.5_rails61_postgres.gemfile.lock index 4bb9c0d52e3..eff5aa05a04 100644 --- a/gemfiles/ruby_2.5_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_2.5_rails61_postgres.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -116,8 +116,8 @@ GEM io-wait (0.3.0) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -209,21 +209,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -282,7 +282,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_rails61_postgres_redis.gemfile b/gemfiles/ruby_2.5_rails61_postgres_redis.gemfile index b5058d605e2..3131ec98cc8 100644 --- a/gemfiles/ruby_2.5_rails61_postgres_redis.gemfile +++ b/gemfiles/ruby_2.5_rails61_postgres_redis.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_2.5_rails61_postgres_redis.gemfile.lock index 29b9d4f63fe..95d57dff383 100644 --- a/gemfiles/ruby_2.5_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.5_rails61_postgres_redis.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -117,8 +117,8 @@ GEM io-wait (0.3.0) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -214,21 +214,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -288,7 +288,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (>= 4.2.5) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_rails61_postgres_sidekiq.gemfile b/gemfiles/ruby_2.5_rails61_postgres_sidekiq.gemfile index f0c8469504f..71a54054c2d 100644 --- a/gemfiles/ruby_2.5_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.5_rails61_postgres_sidekiq.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.5_rails61_postgres_sidekiq.gemfile.lock index c513323eb84..9b96ed86136 100644 --- a/gemfiles/ruby_2.5_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.5_rails61_postgres_sidekiq.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -117,8 +117,8 @@ GEM io-wait (0.3.0) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -211,21 +211,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -288,7 +288,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_rails61_semantic_logger.gemfile b/gemfiles/ruby_2.5_rails61_semantic_logger.gemfile index e0aa5ccf387..2c7a1a4b3f5 100644 --- a/gemfiles/ruby_2.5_rails61_semantic_logger.gemfile +++ b/gemfiles/ruby_2.5_rails61_semantic_logger.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_2.5_rails61_semantic_logger.gemfile.lock index f7a251c7c55..153076c5d75 100644 --- a/gemfiles/ruby_2.5_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.5_rails61_semantic_logger.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -116,8 +116,8 @@ GEM io-wait (0.3.0) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -206,21 +206,21 @@ GEM rake rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -281,7 +281,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_rails6_mysql2.gemfile b/gemfiles/ruby_2.5_rails6_mysql2.gemfile index 32a82cd9e1c..8c998bcea31 100644 --- a/gemfiles/ruby_2.5_rails6_mysql2.gemfile +++ b/gemfiles/ruby_2.5_rails6_mysql2.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_rails6_mysql2.gemfile.lock b/gemfiles/ruby_2.5_rails6_mysql2.gemfile.lock index 2f65e6ade71..e0131cab5e2 100644 --- a/gemfiles/ruby_2.5_rails6_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.5_rails6_mysql2.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -110,8 +110,8 @@ GEM concurrent-ruby (~> 1.0) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -187,21 +187,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -261,7 +261,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_rails6_postgres.gemfile b/gemfiles/ruby_2.5_rails6_postgres.gemfile index f3756e623cc..b450b285b54 100644 --- a/gemfiles/ruby_2.5_rails6_postgres.gemfile +++ b/gemfiles/ruby_2.5_rails6_postgres.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_rails6_postgres.gemfile.lock b/gemfiles/ruby_2.5_rails6_postgres.gemfile.lock index 3a918e324ab..ccef311841d 100644 --- a/gemfiles/ruby_2.5_rails6_postgres.gemfile.lock +++ b/gemfiles/ruby_2.5_rails6_postgres.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -112,8 +112,8 @@ GEM io-wait (0.3.0) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -205,21 +205,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -279,7 +279,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_rails6_postgres_redis.gemfile b/gemfiles/ruby_2.5_rails6_postgres_redis.gemfile index 5f5b7341958..67a9a7bd631 100644 --- a/gemfiles/ruby_2.5_rails6_postgres_redis.gemfile +++ b/gemfiles/ruby_2.5_rails6_postgres_redis.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_rails6_postgres_redis.gemfile.lock b/gemfiles/ruby_2.5_rails6_postgres_redis.gemfile.lock index d9c2a00fedd..d35c30f2ebf 100644 --- a/gemfiles/ruby_2.5_rails6_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.5_rails6_postgres_redis.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -113,8 +113,8 @@ GEM io-wait (0.3.0) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -210,21 +210,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -285,7 +285,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (>= 4.0.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_rails6_postgres_redis_activesupport.gemfile b/gemfiles/ruby_2.5_rails6_postgres_redis_activesupport.gemfile index 6b496c5b830..99eebab31ec 100644 --- a/gemfiles/ruby_2.5_rails6_postgres_redis_activesupport.gemfile +++ b/gemfiles/ruby_2.5_rails6_postgres_redis_activesupport.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.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 239d1047dac..d0a1313c0a1 100644 --- a/gemfiles/ruby_2.5_rails6_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.5_rails6_postgres_redis_activesupport.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -112,8 +112,8 @@ GEM io-wait (0.3.0) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -222,21 +222,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -299,7 +299,7 @@ DEPENDENCIES redis-rails redis-store (~> 1.9) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_rails6_postgres_sidekiq.gemfile b/gemfiles/ruby_2.5_rails6_postgres_sidekiq.gemfile index 925a254cdca..28f222bdca7 100644 --- a/gemfiles/ruby_2.5_rails6_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.5_rails6_postgres_sidekiq.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_rails6_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.5_rails6_postgres_sidekiq.gemfile.lock index 65a932d811c..b1489c6f27a 100644 --- a/gemfiles/ruby_2.5_rails6_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.5_rails6_postgres_sidekiq.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -113,8 +113,8 @@ GEM io-wait (0.3.0) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -207,21 +207,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -286,7 +286,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_rails6_semantic_logger.gemfile b/gemfiles/ruby_2.5_rails6_semantic_logger.gemfile index cb59f1d816b..3d626953c02 100644 --- a/gemfiles/ruby_2.5_rails6_semantic_logger.gemfile +++ b/gemfiles/ruby_2.5_rails6_semantic_logger.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_rails6_semantic_logger.gemfile.lock b/gemfiles/ruby_2.5_rails6_semantic_logger.gemfile.lock index 3afcaf736d2..b30aa66e74a 100644 --- a/gemfiles/ruby_2.5_rails6_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.5_rails6_semantic_logger.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -112,8 +112,8 @@ GEM io-wait (0.3.0) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -202,21 +202,21 @@ GEM rake rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -278,7 +278,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_redis_3.gemfile b/gemfiles/ruby_2.5_redis_3.gemfile index 7a850a3eb61..54a220187af 100644 --- a/gemfiles/ruby_2.5_redis_3.gemfile +++ b/gemfiles/ruby_2.5_redis_3.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_redis_3.gemfile.lock b/gemfiles/ruby_2.5_redis_3.gemfile.lock index 50d95403bd9..fae77c7b476 100644 --- a/gemfiles/ruby_2.5_redis_3.gemfile.lock +++ b/gemfiles/ruby_2.5_redis_3.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -48,8 +48,8 @@ GEM hashdiff (1.0.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -73,21 +73,21 @@ GEM redis (3.3.5) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -130,7 +130,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 3) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_redis_4.gemfile b/gemfiles/ruby_2.5_redis_4.gemfile index 98053373ab2..62a213fa232 100644 --- a/gemfiles/ruby_2.5_redis_4.gemfile +++ b/gemfiles/ruby_2.5_redis_4.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_redis_4.gemfile.lock b/gemfiles/ruby_2.5_redis_4.gemfile.lock index 36dd2ecee9f..cc6fc1f962b 100644 --- a/gemfiles/ruby_2.5_redis_4.gemfile.lock +++ b/gemfiles/ruby_2.5_redis_4.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -48,8 +48,8 @@ GEM hashdiff (1.0.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -73,21 +73,21 @@ GEM redis (4.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -130,7 +130,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 4) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_redis_5.gemfile b/gemfiles/ruby_2.5_redis_5.gemfile index d1afedefa7b..834c4e87ffc 100644 --- a/gemfiles/ruby_2.5_redis_5.gemfile +++ b/gemfiles/ruby_2.5_redis_5.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_redis_5.gemfile.lock b/gemfiles/ruby_2.5_redis_5.gemfile.lock index 3a36d16dda8..2ccf9b4e4f1 100644 --- a/gemfiles/ruby_2.5_redis_5.gemfile.lock +++ b/gemfiles/ruby_2.5_redis_5.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -49,8 +49,8 @@ GEM hashdiff (1.0.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -77,21 +77,21 @@ GEM connection_pool rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -134,7 +134,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 5) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_relational_db.gemfile b/gemfiles/ruby_2.5_relational_db.gemfile index c51d7b93725..fcb62c5e7ee 100644 --- a/gemfiles/ruby_2.5_relational_db.gemfile +++ b/gemfiles/ruby_2.5_relational_db.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_relational_db.gemfile.lock b/gemfiles/ruby_2.5_relational_db.gemfile.lock index ad09b93afaa..57ac823d7df 100644 --- a/gemfiles/ruby_2.5_relational_db.gemfile.lock +++ b/gemfiles/ruby_2.5_relational_db.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -68,8 +68,8 @@ GEM concurrent-ruby (~> 1.0) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -97,21 +97,21 @@ GEM rake rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -165,7 +165,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_resque2_redis3.gemfile b/gemfiles/ruby_2.5_resque2_redis3.gemfile index 702a3b9ac4a..267a91f96f6 100644 --- a/gemfiles/ruby_2.5_resque2_redis3.gemfile +++ b/gemfiles/ruby_2.5_resque2_redis3.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_resque2_redis3.gemfile.lock b/gemfiles/ruby_2.5_resque2_redis3.gemfile.lock index 0a2205186c4..f9fe9a34497 100644 --- a/gemfiles/ruby_2.5_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_2.5_resque2_redis3.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -48,8 +48,8 @@ GEM hashdiff (1.0.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -87,21 +87,21 @@ GEM sinatra (>= 0.9.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -152,7 +152,7 @@ DEPENDENCIES redis (< 4.0) resque (>= 2.0) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_resque2_redis4.gemfile b/gemfiles/ruby_2.5_resque2_redis4.gemfile index d5995dd46ea..453adf7eb50 100644 --- a/gemfiles/ruby_2.5_resque2_redis4.gemfile +++ b/gemfiles/ruby_2.5_resque2_redis4.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_resque2_redis4.gemfile.lock b/gemfiles/ruby_2.5_resque2_redis4.gemfile.lock index c43393c357a..937eaa9b368 100644 --- a/gemfiles/ruby_2.5_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_2.5_resque2_redis4.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -49,8 +49,8 @@ GEM hashdiff (1.0.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -91,21 +91,21 @@ GEM sinatra (>= 0.9.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -156,7 +156,7 @@ DEPENDENCIES redis (>= 4.0) resque (>= 2.0) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_sinatra_2.gemfile b/gemfiles/ruby_2.5_sinatra_2.gemfile index 6332d74ba5f..d4e9ba79372 100644 --- a/gemfiles/ruby_2.5_sinatra_2.gemfile +++ b/gemfiles/ruby_2.5_sinatra_2.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_sinatra_2.gemfile.lock b/gemfiles/ruby_2.5_sinatra_2.gemfile.lock index c42808769a4..53049fc2ce8 100644 --- a/gemfiles/ruby_2.5_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_2.5_sinatra_2.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -51,8 +51,8 @@ GEM hashdiff (1.1.0) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -150,7 +150,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_stripe_10.gemfile b/gemfiles/ruby_2.5_stripe_10.gemfile index b56d2eb5f76..d8202934877 100644 --- a/gemfiles/ruby_2.5_stripe_10.gemfile +++ b/gemfiles/ruby_2.5_stripe_10.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_stripe_10.gemfile.lock b/gemfiles/ruby_2.5_stripe_10.gemfile.lock index ce8226684c6..f1725c35143 100644 --- a/gemfiles/ruby_2.5_stripe_10.gemfile.lock +++ b/gemfiles/ruby_2.5_stripe_10.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -51,8 +51,8 @@ GEM hashdiff (1.1.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -133,7 +133,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_stripe_11.gemfile b/gemfiles/ruby_2.5_stripe_11.gemfile index e8ad2ed0498..b5be616961d 100644 --- a/gemfiles/ruby_2.5_stripe_11.gemfile +++ b/gemfiles/ruby_2.5_stripe_11.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_stripe_11.gemfile.lock b/gemfiles/ruby_2.5_stripe_11.gemfile.lock index 47847248789..35a378e9449 100644 --- a/gemfiles/ruby_2.5_stripe_11.gemfile.lock +++ b/gemfiles/ruby_2.5_stripe_11.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -51,8 +51,8 @@ GEM hashdiff (1.1.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -133,7 +133,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_stripe_12.gemfile b/gemfiles/ruby_2.5_stripe_12.gemfile index 1fe43de6391..5e7a964c348 100644 --- a/gemfiles/ruby_2.5_stripe_12.gemfile +++ b/gemfiles/ruby_2.5_stripe_12.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_stripe_12.gemfile.lock b/gemfiles/ruby_2.5_stripe_12.gemfile.lock index 4c5f76e1627..bc437a5fa2c 100644 --- a/gemfiles/ruby_2.5_stripe_12.gemfile.lock +++ b/gemfiles/ruby_2.5_stripe_12.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -51,8 +51,8 @@ GEM hashdiff (1.1.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -133,7 +133,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_stripe_7.gemfile b/gemfiles/ruby_2.5_stripe_7.gemfile index e312b9c1499..f50ceda0ba3 100644 --- a/gemfiles/ruby_2.5_stripe_7.gemfile +++ b/gemfiles/ruby_2.5_stripe_7.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_stripe_7.gemfile.lock b/gemfiles/ruby_2.5_stripe_7.gemfile.lock index 41bb073a731..3274b09802a 100644 --- a/gemfiles/ruby_2.5_stripe_7.gemfile.lock +++ b/gemfiles/ruby_2.5_stripe_7.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -51,8 +51,8 @@ GEM hashdiff (1.1.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -133,7 +133,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_stripe_8.gemfile b/gemfiles/ruby_2.5_stripe_8.gemfile index d1f8c359fb6..089cb37271d 100644 --- a/gemfiles/ruby_2.5_stripe_8.gemfile +++ b/gemfiles/ruby_2.5_stripe_8.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_stripe_8.gemfile.lock b/gemfiles/ruby_2.5_stripe_8.gemfile.lock index f8870b40656..b89b21ae5e8 100644 --- a/gemfiles/ruby_2.5_stripe_8.gemfile.lock +++ b/gemfiles/ruby_2.5_stripe_8.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -51,8 +51,8 @@ GEM hashdiff (1.1.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -133,7 +133,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_stripe_9.gemfile b/gemfiles/ruby_2.5_stripe_9.gemfile index 7e6a181a95f..8a5c3bf33d6 100644 --- a/gemfiles/ruby_2.5_stripe_9.gemfile +++ b/gemfiles/ruby_2.5_stripe_9.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_stripe_9.gemfile.lock b/gemfiles/ruby_2.5_stripe_9.gemfile.lock index 0779a260890..c675b6ad744 100644 --- a/gemfiles/ruby_2.5_stripe_9.gemfile.lock +++ b/gemfiles/ruby_2.5_stripe_9.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -51,8 +51,8 @@ GEM hashdiff (1.1.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -133,7 +133,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_stripe_latest.gemfile b/gemfiles/ruby_2.5_stripe_latest.gemfile index a706e8fd8cc..cdc50a9953d 100644 --- a/gemfiles/ruby_2.5_stripe_latest.gemfile +++ b/gemfiles/ruby_2.5_stripe_latest.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_stripe_latest.gemfile.lock b/gemfiles/ruby_2.5_stripe_latest.gemfile.lock index f9a89b9cfa6..4cf42a2d0f8 100644 --- a/gemfiles/ruby_2.5_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_2.5_stripe_latest.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -51,8 +51,8 @@ GEM hashdiff (1.1.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -99,7 +99,7 @@ GEM simplecov (~> 0.19) simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) - stripe (13.0.2) + stripe (13.1.0) thor (1.2.2) warning (1.4.0) webmock (3.23.1) @@ -131,7 +131,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.5_stripe_min.gemfile b/gemfiles/ruby_2.5_stripe_min.gemfile index 15d9f661810..37f654aac97 100644 --- a/gemfiles/ruby_2.5_stripe_min.gemfile +++ b/gemfiles/ruby_2.5_stripe_min.gemfile @@ -17,7 +17,7 @@ gem "pry-nav" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.5_stripe_min.gemfile.lock b/gemfiles/ruby_2.5_stripe_min.gemfile.lock index 59000b6f3ca..2f124336804 100644 --- a/gemfiles/ruby_2.5_stripe_min.gemfile.lock +++ b/gemfiles/ruby_2.5_stripe_min.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -51,8 +51,8 @@ GEM hashdiff (1.1.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -131,7 +131,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_activesupport.gemfile b/gemfiles/ruby_2.6_activesupport.gemfile index afd465c1795..5adc21a67fc 100644 --- a/gemfiles/ruby_2.6_activesupport.gemfile +++ b/gemfiles/ruby_2.6_activesupport.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_activesupport.gemfile.lock b/gemfiles/ruby_2.6_activesupport.gemfile.lock index 050f33f043f..f9e9603911f 100644 --- a/gemfiles/ruby_2.6_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.6_activesupport.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -113,8 +113,8 @@ GEM addressable (>= 2.4) jsonapi-renderer (0.2.2) king_konf (1.0.1) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -189,21 +189,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -283,7 +283,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_aws.gemfile b/gemfiles/ruby_2.6_aws.gemfile index 970e245af21..6afe6b319cd 100644 --- a/gemfiles/ruby_2.6_aws.gemfile +++ b/gemfiles/ruby_2.6_aws.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_aws.gemfile.lock b/gemfiles/ruby_2.6_aws.gemfile.lock index f1901d3bcea..8f390b6a454 100644 --- a/gemfiles/ruby_2.6_aws.gemfile.lock +++ b/gemfiles/ruby_2.6_aws.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -1473,8 +1473,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -1505,21 +1505,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -1590,7 +1590,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_contrib.gemfile b/gemfiles/ruby_2.6_contrib.gemfile index d580a14e39f..9a9e4415924 100644 --- a/gemfiles/ruby_2.6_contrib.gemfile +++ b/gemfiles/ruby_2.6_contrib.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 12.3" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_contrib.gemfile.lock b/gemfiles/ruby_2.6_contrib.gemfile.lock index 7710c246eed..5a6a36f0ea6 100644 --- a/gemfiles/ruby_2.6_contrib.gemfile.lock +++ b/gemfiles/ruby_2.6_contrib.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -66,8 +66,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -119,21 +119,21 @@ GEM strscan (>= 3.0.9) roda (3.65.0) rack - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -235,7 +235,7 @@ DEPENDENCIES resque rexml (>= 3.2.7) roda (>= 2.0.0) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_contrib_old.gemfile b/gemfiles/ruby_2.6_contrib_old.gemfile index 561399ea40c..343962dc0f9 100644 --- a/gemfiles/ruby_2.6_contrib_old.gemfile +++ b/gemfiles/ruby_2.6_contrib_old.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_contrib_old.gemfile.lock b/gemfiles/ruby_2.6_contrib_old.gemfile.lock index 600444cbee4..109dc62cc96 100644 --- a/gemfiles/ruby_2.6_contrib_old.gemfile.lock +++ b/gemfiles/ruby_2.6_contrib_old.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -62,8 +62,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -117,21 +117,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -218,7 +218,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_core_old.gemfile b/gemfiles/ruby_2.6_core_old.gemfile index 83765d9953e..7ea673ce0ef 100644 --- a/gemfiles/ruby_2.6_core_old.gemfile +++ b/gemfiles/ruby_2.6_core_old.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_core_old.gemfile.lock b/gemfiles/ruby_2.6_core_old.gemfile.lock index 525e30ba6aa..865eb307c6d 100644 --- a/gemfiles/ruby_2.6_core_old.gemfile.lock +++ b/gemfiles/ruby_2.6_core_old.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -51,8 +51,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -81,21 +81,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -161,7 +161,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_elasticsearch_7.gemfile b/gemfiles/ruby_2.6_elasticsearch_7.gemfile index f1b3d49e5fd..20f3eade38f 100644 --- a/gemfiles/ruby_2.6_elasticsearch_7.gemfile +++ b/gemfiles/ruby_2.6_elasticsearch_7.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_elasticsearch_7.gemfile.lock b/gemfiles/ruby_2.6_elasticsearch_7.gemfile.lock index b854b857055..50d9dc96204 100644 --- a/gemfiles/ruby_2.6_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_2.6_elasticsearch_7.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -67,8 +67,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -101,21 +101,21 @@ GEM regexp_parser (2.8.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -183,7 +183,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_elasticsearch_8.gemfile b/gemfiles/ruby_2.6_elasticsearch_8.gemfile index a909382d1c3..3711bc13617 100644 --- a/gemfiles/ruby_2.6_elasticsearch_8.gemfile +++ b/gemfiles/ruby_2.6_elasticsearch_8.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_elasticsearch_8.gemfile.lock b/gemfiles/ruby_2.6_elasticsearch_8.gemfile.lock index 46766cf0011..65b7274e1e9 100644 --- a/gemfiles/ruby_2.6_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_2.6_elasticsearch_8.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -66,8 +66,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -100,21 +100,21 @@ GEM regexp_parser (2.8.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -182,7 +182,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_elasticsearch_latest.gemfile b/gemfiles/ruby_2.6_elasticsearch_latest.gemfile index b26a50ca97d..b64a2ae5231 100644 --- a/gemfiles/ruby_2.6_elasticsearch_latest.gemfile +++ b/gemfiles/ruby_2.6_elasticsearch_latest.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_2.6_elasticsearch_latest.gemfile.lock index b4a21413da1..d73a9af2039 100644 --- a/gemfiles/ruby_2.6_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_2.6_elasticsearch_latest.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -68,8 +68,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -182,7 +182,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_graphql_1.13.gemfile b/gemfiles/ruby_2.6_graphql_1.13.gemfile index 65159a0b25f..82f1077c5d3 100644 --- a/gemfiles/ruby_2.6_graphql_1.13.gemfile +++ b/gemfiles/ruby_2.6_graphql_1.13.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_graphql_1.13.gemfile.lock b/gemfiles/ruby_2.6_graphql_1.13.gemfile.lock index f8556be2773..68151c12b98 100644 --- a/gemfiles/ruby_2.6_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_2.6_graphql_1.13.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -121,8 +121,8 @@ GEM json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -216,21 +216,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -314,7 +314,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_graphql_2.0.gemfile b/gemfiles/ruby_2.6_graphql_2.0.gemfile index e59135f6559..a827312ffee 100644 --- a/gemfiles/ruby_2.6_graphql_2.0.gemfile +++ b/gemfiles/ruby_2.6_graphql_2.0.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_graphql_2.0.gemfile.lock b/gemfiles/ruby_2.6_graphql_2.0.gemfile.lock index 2b6b98fc046..f8bedee1ec1 100644 --- a/gemfiles/ruby_2.6_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_2.6_graphql_2.0.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -121,8 +121,8 @@ GEM json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -216,21 +216,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -314,7 +314,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_hanami_1.gemfile b/gemfiles/ruby_2.6_hanami_1.gemfile index ab1bd67f2c3..da0be2260d9 100644 --- a/gemfiles/ruby_2.6_hanami_1.gemfile +++ b/gemfiles/ruby_2.6_hanami_1.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_hanami_1.gemfile.lock b/gemfiles/ruby_2.6_hanami_1.gemfile.lock index 57c62b94018..5f576325c23 100644 --- a/gemfiles/ruby_2.6_hanami_1.gemfile.lock +++ b/gemfiles/ruby_2.6_hanami_1.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -126,8 +126,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -174,21 +174,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -262,7 +262,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_http.gemfile b/gemfiles/ruby_2.6_http.gemfile index adb87e91bd3..cdc2b623fcf 100644 --- a/gemfiles/ruby_2.6_http.gemfile +++ b/gemfiles/ruby_2.6_http.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_http.gemfile.lock b/gemfiles/ruby_2.6_http.gemfile.lock index 6f47dcafb63..81cc5389cb7 100644 --- a/gemfiles/ruby_2.6_http.gemfile.lock +++ b/gemfiles/ruby_2.6_http.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -73,8 +73,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -117,21 +117,21 @@ GEM netrc (~> 0.8) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -209,7 +209,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) rest-client rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_opensearch_2.gemfile b/gemfiles/ruby_2.6_opensearch_2.gemfile index 6700e0b254a..8f8d9b205c1 100644 --- a/gemfiles/ruby_2.6_opensearch_2.gemfile +++ b/gemfiles/ruby_2.6_opensearch_2.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_opensearch_2.gemfile.lock b/gemfiles/ruby_2.6_opensearch_2.gemfile.lock index 8b80ecfe6c6..e1586833772 100644 --- a/gemfiles/ruby_2.6_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_2.6_opensearch_2.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -58,8 +58,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -100,21 +100,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -182,7 +182,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_opensearch_3.gemfile b/gemfiles/ruby_2.6_opensearch_3.gemfile index baa895305c4..50d1d32d86b 100644 --- a/gemfiles/ruby_2.6_opensearch_3.gemfile +++ b/gemfiles/ruby_2.6_opensearch_3.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_opensearch_3.gemfile.lock b/gemfiles/ruby_2.6_opensearch_3.gemfile.lock index cccfefb7508..84a354719d2 100644 --- a/gemfiles/ruby_2.6_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_2.6_opensearch_3.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -58,8 +58,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -95,21 +95,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -177,7 +177,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_opensearch_latest.gemfile b/gemfiles/ruby_2.6_opensearch_latest.gemfile index e029c5c7f98..4102d64f402 100644 --- a/gemfiles/ruby_2.6_opensearch_latest.gemfile +++ b/gemfiles/ruby_2.6_opensearch_latest.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_opensearch_latest.gemfile.lock b/gemfiles/ruby_2.6_opensearch_latest.gemfile.lock index b4811176b76..fa58226cceb 100644 --- a/gemfiles/ruby_2.6_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_2.6_opensearch_latest.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -60,8 +60,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -177,7 +177,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_opentelemetry.gemfile b/gemfiles/ruby_2.6_opentelemetry.gemfile index c8cd9fb7fcc..7707bf3ebd5 100644 --- a/gemfiles/ruby_2.6_opentelemetry.gemfile +++ b/gemfiles/ruby_2.6_opentelemetry.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_opentelemetry.gemfile.lock b/gemfiles/ruby_2.6_opentelemetry.gemfile.lock index 7eb2d9d6a52..f2205c5056d 100755 --- a/gemfiles/ruby_2.6_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_2.6_opentelemetry.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -51,8 +51,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -93,21 +93,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -174,7 +174,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile b/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile index 95f44d00348..d13a24f4ecc 100644 --- a/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile +++ b/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile.lock index 06234ec779a..58b413d7796 100644 --- a/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_2.6_opentelemetry_otlp.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -56,8 +56,8 @@ GEM json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -188,7 +188,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_rack_1.gemfile b/gemfiles/ruby_2.6_rack_1.gemfile index fbd1779c13c..34d97523568 100644 --- a/gemfiles/ruby_2.6_rack_1.gemfile +++ b/gemfiles/ruby_2.6_rack_1.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_rack_1.gemfile.lock b/gemfiles/ruby_2.6_rack_1.gemfile.lock index 0128e967943..10b46bd30fe 100644 --- a/gemfiles/ruby_2.6_rack_1.gemfile.lock +++ b/gemfiles/ruby_2.6_rack_1.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -51,8 +51,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -88,21 +88,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -171,7 +171,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_rack_2.gemfile b/gemfiles/ruby_2.6_rack_2.gemfile index 01d4c90176a..2c2f94bc3fc 100644 --- a/gemfiles/ruby_2.6_rack_2.gemfile +++ b/gemfiles/ruby_2.6_rack_2.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_rack_2.gemfile.lock b/gemfiles/ruby_2.6_rack_2.gemfile.lock index a0fe241f3fb..8b24dccdc91 100644 --- a/gemfiles/ruby_2.6_rack_2.gemfile.lock +++ b/gemfiles/ruby_2.6_rack_2.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -51,8 +51,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -88,21 +88,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -171,7 +171,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_rack_3.gemfile b/gemfiles/ruby_2.6_rack_3.gemfile index e68a0332131..cdc45afce7a 100644 --- a/gemfiles/ruby_2.6_rack_3.gemfile +++ b/gemfiles/ruby_2.6_rack_3.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_rack_3.gemfile.lock b/gemfiles/ruby_2.6_rack_3.gemfile.lock index 7b95065ef89..77652678202 100644 --- a/gemfiles/ruby_2.6_rack_3.gemfile.lock +++ b/gemfiles/ruby_2.6_rack_3.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -51,8 +51,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -88,21 +88,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -171,7 +171,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_rack_latest.gemfile b/gemfiles/ruby_2.6_rack_latest.gemfile index df862f35d30..e0ca01fce2b 100644 --- a/gemfiles/ruby_2.6_rack_latest.gemfile +++ b/gemfiles/ruby_2.6_rack_latest.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_rack_latest.gemfile.lock b/gemfiles/ruby_2.6_rack_latest.gemfile.lock index e89c6e1ad24..c348e790338 100644 --- a/gemfiles/ruby_2.6_rack_latest.gemfile.lock +++ b/gemfiles/ruby_2.6_rack_latest.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -54,8 +54,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -173,7 +173,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_rails5_mysql2.gemfile b/gemfiles/ruby_2.6_rails5_mysql2.gemfile index d1e0797ed98..44bac1199da 100644 --- a/gemfiles/ruby_2.6_rails5_mysql2.gemfile +++ b/gemfiles/ruby_2.6_rails5_mysql2.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_rails5_mysql2.gemfile.lock b/gemfiles/ruby_2.6_rails5_mysql2.gemfile.lock index 80ba308372a..7cc694a1d71 100644 --- a/gemfiles/ruby_2.6_rails5_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.6_rails5_mysql2.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -101,8 +101,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -192,21 +192,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -289,7 +289,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_rails5_postgres.gemfile b/gemfiles/ruby_2.6_rails5_postgres.gemfile index 4790acc88ce..dba24170b40 100644 --- a/gemfiles/ruby_2.6_rails5_postgres.gemfile +++ b/gemfiles/ruby_2.6_rails5_postgres.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_rails5_postgres.gemfile.lock b/gemfiles/ruby_2.6_rails5_postgres.gemfile.lock index feb16cacb33..6f04babdcf8 100644 --- a/gemfiles/ruby_2.6_rails5_postgres.gemfile.lock +++ b/gemfiles/ruby_2.6_rails5_postgres.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -101,8 +101,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -192,21 +192,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -289,7 +289,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile b/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile index a8d99533c76..4875bcd3f3b 100644 --- a/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile +++ b/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile.lock b/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile.lock index d8044bdddcd..9e1f6225aad 100644 --- a/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.6_rails5_postgres_redis.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -101,8 +101,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -193,21 +193,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -291,7 +291,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 4) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_rails5_postgres_redis_activesupport.gemfile b/gemfiles/ruby_2.6_rails5_postgres_redis_activesupport.gemfile index d13a7a241da..b25b3f73b36 100644 --- a/gemfiles/ruby_2.6_rails5_postgres_redis_activesupport.gemfile +++ b/gemfiles/ruby_2.6_rails5_postgres_redis_activesupport.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.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 f3000e6afaf..63f9401c0c8 100644 --- a/gemfiles/ruby_2.6_rails5_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.6_rails5_postgres_redis_activesupport.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -101,8 +101,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -209,21 +209,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -309,7 +309,7 @@ DEPENDENCIES redis-rails redis-store (>= 1.4, < 2) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile b/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile index 636cc3f544e..17be3779ac9 100644 --- a/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile.lock index d5030f2a8dd..37625e7fe24 100644 --- a/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.6_rails5_postgres_sidekiq.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -102,8 +102,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -194,21 +194,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -296,7 +296,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile b/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile index 7c355d09a56..d75425225a0 100644 --- a/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile +++ b/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile.lock b/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile.lock index be3fb0a8a69..f942003ec41 100644 --- a/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.6_rails5_semantic_logger.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -101,8 +101,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -189,21 +189,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -288,7 +288,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_rails61_mysql2.gemfile b/gemfiles/ruby_2.6_rails61_mysql2.gemfile index 6d80e921136..9a9f825fc02 100644 --- a/gemfiles/ruby_2.6_rails61_mysql2.gemfile +++ b/gemfiles/ruby_2.6_rails61_mysql2.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_rails61_mysql2.gemfile.lock b/gemfiles/ruby_2.6_rails61_mysql2.gemfile.lock index bea6e5021d6..c783b661952 100644 --- a/gemfiles/ruby_2.6_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.6_rails61_mysql2.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -118,8 +118,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -211,21 +211,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -308,7 +308,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_rails61_postgres.gemfile b/gemfiles/ruby_2.6_rails61_postgres.gemfile index 230e3348073..912269eadb8 100644 --- a/gemfiles/ruby_2.6_rails61_postgres.gemfile +++ b/gemfiles/ruby_2.6_rails61_postgres.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_rails61_postgres.gemfile.lock b/gemfiles/ruby_2.6_rails61_postgres.gemfile.lock index 46fa444530c..c52699fd1c2 100644 --- a/gemfiles/ruby_2.6_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_2.6_rails61_postgres.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -118,8 +118,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -211,21 +211,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -308,7 +308,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile b/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile index de45f90e872..19e0be88199 100644 --- a/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile +++ b/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile.lock index 141d31b386d..30ea02dfdd6 100644 --- a/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.6_rails61_postgres_redis.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -118,8 +118,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -212,21 +212,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -310,7 +310,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 4) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile b/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile index 0af8a26e3ec..cb2f57c7624 100644 --- a/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile.lock index 8dfb675b008..242f2b22308 100644 --- a/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.6_rails61_postgres_sidekiq.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -119,8 +119,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -213,21 +213,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -314,7 +314,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile b/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile index 7448e68f1ca..e74eae4177b 100644 --- a/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile +++ b/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile.lock index 9e75ea635ea..9440a358c8a 100644 --- a/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.6_rails61_semantic_logger.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -118,8 +118,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -208,21 +208,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -307,7 +307,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_rails6_mysql2.gemfile b/gemfiles/ruby_2.6_rails6_mysql2.gemfile index acb24d22d72..1605edca04c 100644 --- a/gemfiles/ruby_2.6_rails6_mysql2.gemfile +++ b/gemfiles/ruby_2.6_rails6_mysql2.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_rails6_mysql2.gemfile.lock b/gemfiles/ruby_2.6_rails6_mysql2.gemfile.lock index 5eddc80e3c7..2cce3a54c6c 100644 --- a/gemfiles/ruby_2.6_rails6_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.6_rails6_mysql2.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -114,8 +114,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -207,21 +207,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -305,7 +305,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_rails6_postgres.gemfile b/gemfiles/ruby_2.6_rails6_postgres.gemfile index 9ecd8d22f6f..704531c535c 100644 --- a/gemfiles/ruby_2.6_rails6_postgres.gemfile +++ b/gemfiles/ruby_2.6_rails6_postgres.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_rails6_postgres.gemfile.lock b/gemfiles/ruby_2.6_rails6_postgres.gemfile.lock index 85963bc2bb7..d450c774a13 100644 --- a/gemfiles/ruby_2.6_rails6_postgres.gemfile.lock +++ b/gemfiles/ruby_2.6_rails6_postgres.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -114,8 +114,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -207,21 +207,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -305,7 +305,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile b/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile index 95cd43a0937..7f31d06d40f 100644 --- a/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile +++ b/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile.lock b/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile.lock index 93dd0fe27f3..85060698e09 100644 --- a/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.6_rails6_postgres_redis.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -114,8 +114,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -208,21 +208,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -307,7 +307,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 4) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_rails6_postgres_redis_activesupport.gemfile b/gemfiles/ruby_2.6_rails6_postgres_redis_activesupport.gemfile index 68fdb26f44b..19031fcaec5 100644 --- a/gemfiles/ruby_2.6_rails6_postgres_redis_activesupport.gemfile +++ b/gemfiles/ruby_2.6_rails6_postgres_redis_activesupport.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.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 3f53a4f302d..01fe6243125 100644 --- a/gemfiles/ruby_2.6_rails6_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.6_rails6_postgres_redis_activesupport.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -114,8 +114,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -224,21 +224,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -325,7 +325,7 @@ DEPENDENCIES redis-rails redis-store (>= 1.4, < 2) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile b/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile index a9bb1e33b18..9c6134e3706 100644 --- a/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile.lock index 0c15ffde49a..9c4ec1d7392 100644 --- a/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.6_rails6_postgres_sidekiq.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -115,8 +115,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -209,21 +209,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -312,7 +312,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile b/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile index 5cda196c025..d150608644b 100644 --- a/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile +++ b/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile.lock b/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile.lock index 91c48231842..7dc53c3bbd0 100644 --- a/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.6_rails6_semantic_logger.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -114,8 +114,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -204,21 +204,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -304,7 +304,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_redis_3.gemfile b/gemfiles/ruby_2.6_redis_3.gemfile index f20614681fb..cbc40cfadd1 100644 --- a/gemfiles/ruby_2.6_redis_3.gemfile +++ b/gemfiles/ruby_2.6_redis_3.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_redis_3.gemfile.lock b/gemfiles/ruby_2.6_redis_3.gemfile.lock index 435e16df1f7..3669732d9a3 100644 --- a/gemfiles/ruby_2.6_redis_3.gemfile.lock +++ b/gemfiles/ruby_2.6_redis_3.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -51,8 +51,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -82,21 +82,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -163,7 +163,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 3) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_redis_4.gemfile b/gemfiles/ruby_2.6_redis_4.gemfile index 646f01022eb..58708ef16a6 100644 --- a/gemfiles/ruby_2.6_redis_4.gemfile +++ b/gemfiles/ruby_2.6_redis_4.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_redis_4.gemfile.lock b/gemfiles/ruby_2.6_redis_4.gemfile.lock index 60790af6282..3e29f08a7b8 100644 --- a/gemfiles/ruby_2.6_redis_4.gemfile.lock +++ b/gemfiles/ruby_2.6_redis_4.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -51,8 +51,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -82,21 +82,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -163,7 +163,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 4) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_redis_5.gemfile b/gemfiles/ruby_2.6_redis_5.gemfile index 7124e3481c6..1de1f07ccc0 100644 --- a/gemfiles/ruby_2.6_redis_5.gemfile +++ b/gemfiles/ruby_2.6_redis_5.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_redis_5.gemfile.lock b/gemfiles/ruby_2.6_redis_5.gemfile.lock index 27bf1cd747a..ea5f0715f80 100644 --- a/gemfiles/ruby_2.6_redis_5.gemfile.lock +++ b/gemfiles/ruby_2.6_redis_5.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -52,8 +52,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -86,21 +86,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -167,7 +167,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 5) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_relational_db.gemfile b/gemfiles/ruby_2.6_relational_db.gemfile index c99c7465193..37081197a85 100644 --- a/gemfiles/ruby_2.6_relational_db.gemfile +++ b/gemfiles/ruby_2.6_relational_db.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_relational_db.gemfile.lock b/gemfiles/ruby_2.6_relational_db.gemfile.lock index a2d79f3948f..969af7f8290 100644 --- a/gemfiles/ruby_2.6_relational_db.gemfile.lock +++ b/gemfiles/ruby_2.6_relational_db.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -70,8 +70,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -107,21 +107,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -200,7 +200,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_resque2_redis3.gemfile b/gemfiles/ruby_2.6_resque2_redis3.gemfile index 3394ff89382..c9f54b0fcb7 100644 --- a/gemfiles/ruby_2.6_resque2_redis3.gemfile +++ b/gemfiles/ruby_2.6_resque2_redis3.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_resque2_redis3.gemfile.lock b/gemfiles/ruby_2.6_resque2_redis3.gemfile.lock index 9d789565b64..5336cf37759 100644 --- a/gemfiles/ruby_2.6_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_2.6_resque2_redis3.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -51,8 +51,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -96,21 +96,21 @@ GEM sinatra (>= 0.9.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -185,7 +185,7 @@ DEPENDENCIES redis (~> 3.0) resque (>= 2.0) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_resque2_redis4.gemfile b/gemfiles/ruby_2.6_resque2_redis4.gemfile index 3b7df518be7..637edb37aa7 100644 --- a/gemfiles/ruby_2.6_resque2_redis4.gemfile +++ b/gemfiles/ruby_2.6_resque2_redis4.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_resque2_redis4.gemfile.lock b/gemfiles/ruby_2.6_resque2_redis4.gemfile.lock index 7088ce973e9..c443a5e83ba 100644 --- a/gemfiles/ruby_2.6_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_2.6_resque2_redis4.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -51,8 +51,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -96,21 +96,21 @@ GEM sinatra (>= 0.9.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -185,7 +185,7 @@ DEPENDENCIES redis (~> 4.0) resque (>= 2.0) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_sinatra_2.gemfile b/gemfiles/ruby_2.6_sinatra_2.gemfile index de2d5091349..2e9515db75f 100644 --- a/gemfiles/ruby_2.6_sinatra_2.gemfile +++ b/gemfiles/ruby_2.6_sinatra_2.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_sinatra_2.gemfile.lock b/gemfiles/ruby_2.6_sinatra_2.gemfile.lock index 5d5a413861c..672c70c1eac 100644 --- a/gemfiles/ruby_2.6_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_2.6_sinatra_2.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -54,8 +54,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -185,7 +185,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_sinatra_3.gemfile b/gemfiles/ruby_2.6_sinatra_3.gemfile index eb271ed75b5..ce79eca0434 100644 --- a/gemfiles/ruby_2.6_sinatra_3.gemfile +++ b/gemfiles/ruby_2.6_sinatra_3.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_sinatra_3.gemfile.lock b/gemfiles/ruby_2.6_sinatra_3.gemfile.lock index 5f04fb84059..400aa9664dc 100644 --- a/gemfiles/ruby_2.6_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_2.6_sinatra_3.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -55,8 +55,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -187,7 +187,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_stripe_10.gemfile b/gemfiles/ruby_2.6_stripe_10.gemfile index 94b249d24fe..c577868d388 100644 --- a/gemfiles/ruby_2.6_stripe_10.gemfile +++ b/gemfiles/ruby_2.6_stripe_10.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_stripe_10.gemfile.lock b/gemfiles/ruby_2.6_stripe_10.gemfile.lock index 5d3bb5338b4..b883864e953 100644 --- a/gemfiles/ruby_2.6_stripe_10.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_10.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -54,8 +54,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -168,7 +168,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_stripe_11.gemfile b/gemfiles/ruby_2.6_stripe_11.gemfile index 7555bb80aa0..dd682ffbacf 100644 --- a/gemfiles/ruby_2.6_stripe_11.gemfile +++ b/gemfiles/ruby_2.6_stripe_11.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_stripe_11.gemfile.lock b/gemfiles/ruby_2.6_stripe_11.gemfile.lock index ca75aefe508..0c55ab083aa 100644 --- a/gemfiles/ruby_2.6_stripe_11.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_11.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -54,8 +54,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -168,7 +168,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_stripe_12.gemfile b/gemfiles/ruby_2.6_stripe_12.gemfile index dc56b8555e1..287754932b1 100644 --- a/gemfiles/ruby_2.6_stripe_12.gemfile +++ b/gemfiles/ruby_2.6_stripe_12.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_stripe_12.gemfile.lock b/gemfiles/ruby_2.6_stripe_12.gemfile.lock index d9278a1e662..e273e92074b 100644 --- a/gemfiles/ruby_2.6_stripe_12.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_12.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -54,8 +54,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -168,7 +168,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_stripe_7.gemfile b/gemfiles/ruby_2.6_stripe_7.gemfile index 53e819ff33d..a57cb921689 100644 --- a/gemfiles/ruby_2.6_stripe_7.gemfile +++ b/gemfiles/ruby_2.6_stripe_7.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_stripe_7.gemfile.lock b/gemfiles/ruby_2.6_stripe_7.gemfile.lock index bd484d49b35..107a53f720c 100644 --- a/gemfiles/ruby_2.6_stripe_7.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_7.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -54,8 +54,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -168,7 +168,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_stripe_8.gemfile b/gemfiles/ruby_2.6_stripe_8.gemfile index 54f4c2ea396..bb4f7335ed0 100644 --- a/gemfiles/ruby_2.6_stripe_8.gemfile +++ b/gemfiles/ruby_2.6_stripe_8.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_stripe_8.gemfile.lock b/gemfiles/ruby_2.6_stripe_8.gemfile.lock index 6516025ceef..7106fdae937 100644 --- a/gemfiles/ruby_2.6_stripe_8.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_8.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -54,8 +54,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -168,7 +168,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_stripe_9.gemfile b/gemfiles/ruby_2.6_stripe_9.gemfile index 85151aaa4be..c1e793a97cc 100644 --- a/gemfiles/ruby_2.6_stripe_9.gemfile +++ b/gemfiles/ruby_2.6_stripe_9.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_stripe_9.gemfile.lock b/gemfiles/ruby_2.6_stripe_9.gemfile.lock index c806e0f278f..ecc5980fb64 100644 --- a/gemfiles/ruby_2.6_stripe_9.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_9.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -54,8 +54,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -168,7 +168,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_stripe_latest.gemfile b/gemfiles/ruby_2.6_stripe_latest.gemfile index 6fae93f1b94..72866e30e77 100644 --- a/gemfiles/ruby_2.6_stripe_latest.gemfile +++ b/gemfiles/ruby_2.6_stripe_latest.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_stripe_latest.gemfile.lock b/gemfiles/ruby_2.6_stripe_latest.gemfile.lock index a40ebe7695e..8a43bee4885 100644 --- a/gemfiles/ruby_2.6_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_latest.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -54,8 +54,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -133,7 +133,7 @@ GEM simplecov (~> 0.19) simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) - stripe (13.0.2) + stripe (13.1.0) thor (1.3.2) unicode-display_width (2.6.0) warning (1.4.0) @@ -166,7 +166,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.6_stripe_min.gemfile b/gemfiles/ruby_2.6_stripe_min.gemfile index b863383b005..5f4031f7e19 100644 --- a/gemfiles/ruby_2.6_stripe_min.gemfile +++ b/gemfiles/ruby_2.6_stripe_min.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.6_stripe_min.gemfile.lock b/gemfiles/ruby_2.6_stripe_min.gemfile.lock index ca701a8f512..3ab1089d367 100644 --- a/gemfiles/ruby_2.6_stripe_min.gemfile.lock +++ b/gemfiles/ruby_2.6_stripe_min.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -54,8 +54,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -166,7 +166,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_activesupport.gemfile b/gemfiles/ruby_2.7_activesupport.gemfile index a9ef01c8b90..8ed829aa5be 100644 --- a/gemfiles/ruby_2.7_activesupport.gemfile +++ b/gemfiles/ruby_2.7_activesupport.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_activesupport.gemfile.lock b/gemfiles/ruby_2.7_activesupport.gemfile.lock index ca4c89e3da8..8dadf971192 100644 --- a/gemfiles/ruby_2.7_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.7_activesupport.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -109,8 +109,8 @@ GEM addressable (>= 2.4) jsonapi-renderer (0.2.2) king_konf (1.0.1) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -186,21 +186,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -279,7 +279,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_aws.gemfile b/gemfiles/ruby_2.7_aws.gemfile index 95ff0a7a4c9..1fa29bb423a 100644 --- a/gemfiles/ruby_2.7_aws.gemfile +++ b/gemfiles/ruby_2.7_aws.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_aws.gemfile.lock b/gemfiles/ruby_2.7_aws.gemfile.lock index 707083a2e98..926a55f05ce 100644 --- a/gemfiles/ruby_2.7_aws.gemfile.lock +++ b/gemfiles/ruby_2.7_aws.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -1473,8 +1473,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -1505,21 +1505,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -1590,7 +1590,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_contrib.gemfile b/gemfiles/ruby_2.7_contrib.gemfile index 2a2e5145b82..ea43261814a 100644 --- a/gemfiles/ruby_2.7_contrib.gemfile +++ b/gemfiles/ruby_2.7_contrib.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 12.3" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_contrib.gemfile.lock b/gemfiles/ruby_2.7_contrib.gemfile.lock index 0449eb7369a..7966a458d28 100644 --- a/gemfiles/ruby_2.7_contrib.gemfile.lock +++ b/gemfiles/ruby_2.7_contrib.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -66,8 +66,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -119,21 +119,21 @@ GEM strscan (>= 3.0.9) roda (3.65.0) rack - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -234,7 +234,7 @@ DEPENDENCIES resque rexml (>= 3.2.7) roda (>= 2.0.0) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_contrib_old.gemfile b/gemfiles/ruby_2.7_contrib_old.gemfile index 1bacfa31883..721a55a6b1a 100644 --- a/gemfiles/ruby_2.7_contrib_old.gemfile +++ b/gemfiles/ruby_2.7_contrib_old.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_contrib_old.gemfile.lock b/gemfiles/ruby_2.7_contrib_old.gemfile.lock index a2c7db7ea75..c8f07c172d8 100644 --- a/gemfiles/ruby_2.7_contrib_old.gemfile.lock +++ b/gemfiles/ruby_2.7_contrib_old.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -62,8 +62,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -117,21 +117,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -218,7 +218,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_core_old.gemfile b/gemfiles/ruby_2.7_core_old.gemfile index 8be6bdbc715..b8839a12f37 100644 --- a/gemfiles/ruby_2.7_core_old.gemfile +++ b/gemfiles/ruby_2.7_core_old.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_core_old.gemfile.lock b/gemfiles/ruby_2.7_core_old.gemfile.lock index ec32358c863..d9f1dbd4055 100644 --- a/gemfiles/ruby_2.7_core_old.gemfile.lock +++ b/gemfiles/ruby_2.7_core_old.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -51,8 +51,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -81,21 +81,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -161,7 +161,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_elasticsearch_7.gemfile b/gemfiles/ruby_2.7_elasticsearch_7.gemfile index 21eef05cc83..1a98af9aa40 100644 --- a/gemfiles/ruby_2.7_elasticsearch_7.gemfile +++ b/gemfiles/ruby_2.7_elasticsearch_7.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_elasticsearch_7.gemfile.lock b/gemfiles/ruby_2.7_elasticsearch_7.gemfile.lock index 1ad9d748737..4f8dc535b70 100644 --- a/gemfiles/ruby_2.7_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_2.7_elasticsearch_7.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -67,8 +67,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -101,21 +101,21 @@ GEM regexp_parser (2.8.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -183,7 +183,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_elasticsearch_8.gemfile b/gemfiles/ruby_2.7_elasticsearch_8.gemfile index 8854724b690..208fecd5fc9 100644 --- a/gemfiles/ruby_2.7_elasticsearch_8.gemfile +++ b/gemfiles/ruby_2.7_elasticsearch_8.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_elasticsearch_8.gemfile.lock b/gemfiles/ruby_2.7_elasticsearch_8.gemfile.lock index d242648656d..0b636536231 100644 --- a/gemfiles/ruby_2.7_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_2.7_elasticsearch_8.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -66,8 +66,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -100,21 +100,21 @@ GEM regexp_parser (2.8.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -182,7 +182,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_elasticsearch_latest.gemfile b/gemfiles/ruby_2.7_elasticsearch_latest.gemfile index 27be9fae8cc..ac72bd25db7 100644 --- a/gemfiles/ruby_2.7_elasticsearch_latest.gemfile +++ b/gemfiles/ruby_2.7_elasticsearch_latest.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_2.7_elasticsearch_latest.gemfile.lock index 8514c08656b..44239102e14 100644 --- a/gemfiles/ruby_2.7_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_2.7_elasticsearch_latest.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -67,8 +67,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -181,7 +181,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_graphql_1.13.gemfile b/gemfiles/ruby_2.7_graphql_1.13.gemfile index 6f10c179ed1..bfb9a9ae5ba 100644 --- a/gemfiles/ruby_2.7_graphql_1.13.gemfile +++ b/gemfiles/ruby_2.7_graphql_1.13.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_graphql_1.13.gemfile.lock b/gemfiles/ruby_2.7_graphql_1.13.gemfile.lock index ad27a560fa9..e9303eda2fa 100644 --- a/gemfiles/ruby_2.7_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_2.7_graphql_1.13.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -121,8 +121,8 @@ GEM json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -217,21 +217,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -315,7 +315,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_graphql_2.0.gemfile b/gemfiles/ruby_2.7_graphql_2.0.gemfile index ed0d0805ac3..4660d670e55 100644 --- a/gemfiles/ruby_2.7_graphql_2.0.gemfile +++ b/gemfiles/ruby_2.7_graphql_2.0.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_graphql_2.0.gemfile.lock b/gemfiles/ruby_2.7_graphql_2.0.gemfile.lock index ccbaad5d4a1..5439d528fd7 100644 --- a/gemfiles/ruby_2.7_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_2.7_graphql_2.0.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -121,8 +121,8 @@ GEM json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -217,21 +217,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -315,7 +315,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_graphql_2.1.gemfile b/gemfiles/ruby_2.7_graphql_2.1.gemfile index 599b6553ccf..fc69d1bf7f1 100644 --- a/gemfiles/ruby_2.7_graphql_2.1.gemfile +++ b/gemfiles/ruby_2.7_graphql_2.1.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_graphql_2.1.gemfile.lock b/gemfiles/ruby_2.7_graphql_2.1.gemfile.lock index 16f2a6aa4e6..a2fa75fd2bb 100644 --- a/gemfiles/ruby_2.7_graphql_2.1.gemfile.lock +++ b/gemfiles/ruby_2.7_graphql_2.1.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -122,8 +122,8 @@ GEM json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -218,21 +218,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -316,7 +316,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_graphql_2.2.gemfile b/gemfiles/ruby_2.7_graphql_2.2.gemfile index ba68deaf3cc..15de750aa0e 100644 --- a/gemfiles/ruby_2.7_graphql_2.2.gemfile +++ b/gemfiles/ruby_2.7_graphql_2.2.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_graphql_2.2.gemfile.lock b/gemfiles/ruby_2.7_graphql_2.2.gemfile.lock index d8556e23852..7aab742ef84 100644 --- a/gemfiles/ruby_2.7_graphql_2.2.gemfile.lock +++ b/gemfiles/ruby_2.7_graphql_2.2.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -122,8 +122,8 @@ GEM json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -218,21 +218,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -316,7 +316,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_graphql_2.3.gemfile b/gemfiles/ruby_2.7_graphql_2.3.gemfile index d69ce91444c..0e7ac8a2842 100644 --- a/gemfiles/ruby_2.7_graphql_2.3.gemfile +++ b/gemfiles/ruby_2.7_graphql_2.3.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_graphql_2.3.gemfile.lock b/gemfiles/ruby_2.7_graphql_2.3.gemfile.lock index 6dc584faaf7..1e7c336ba58 100644 --- a/gemfiles/ruby_2.7_graphql_2.3.gemfile.lock +++ b/gemfiles/ruby_2.7_graphql_2.3.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -123,8 +123,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -317,7 +317,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_hanami_1.gemfile b/gemfiles/ruby_2.7_hanami_1.gemfile index 696970d1759..40729a9db62 100644 --- a/gemfiles/ruby_2.7_hanami_1.gemfile +++ b/gemfiles/ruby_2.7_hanami_1.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_hanami_1.gemfile.lock b/gemfiles/ruby_2.7_hanami_1.gemfile.lock index bafdcc3793e..e34125b03a0 100644 --- a/gemfiles/ruby_2.7_hanami_1.gemfile.lock +++ b/gemfiles/ruby_2.7_hanami_1.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -127,8 +127,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -175,21 +175,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -264,7 +264,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_http.gemfile b/gemfiles/ruby_2.7_http.gemfile index 347cb848d80..178c052ae03 100644 --- a/gemfiles/ruby_2.7_http.gemfile +++ b/gemfiles/ruby_2.7_http.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_http.gemfile.lock b/gemfiles/ruby_2.7_http.gemfile.lock index e7e2043eb2f..dfabc2168df 100644 --- a/gemfiles/ruby_2.7_http.gemfile.lock +++ b/gemfiles/ruby_2.7_http.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -73,8 +73,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -117,21 +117,21 @@ GEM netrc (~> 0.8) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -209,7 +209,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) rest-client rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_opensearch_2.gemfile b/gemfiles/ruby_2.7_opensearch_2.gemfile index e4fe4558af7..6fe0d931993 100644 --- a/gemfiles/ruby_2.7_opensearch_2.gemfile +++ b/gemfiles/ruby_2.7_opensearch_2.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_opensearch_2.gemfile.lock b/gemfiles/ruby_2.7_opensearch_2.gemfile.lock index 35a172bd6d0..53c60a0b20e 100644 --- a/gemfiles/ruby_2.7_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_2.7_opensearch_2.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -58,8 +58,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -100,21 +100,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -182,7 +182,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_opensearch_3.gemfile b/gemfiles/ruby_2.7_opensearch_3.gemfile index 846a6256428..eafad1dcfa6 100644 --- a/gemfiles/ruby_2.7_opensearch_3.gemfile +++ b/gemfiles/ruby_2.7_opensearch_3.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_opensearch_3.gemfile.lock b/gemfiles/ruby_2.7_opensearch_3.gemfile.lock index 18a4114a1a8..15a19a6b8e2 100644 --- a/gemfiles/ruby_2.7_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_2.7_opensearch_3.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -58,8 +58,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -95,21 +95,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -177,7 +177,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_opensearch_latest.gemfile b/gemfiles/ruby_2.7_opensearch_latest.gemfile index eb313f9cd41..a08289b86e7 100644 --- a/gemfiles/ruby_2.7_opensearch_latest.gemfile +++ b/gemfiles/ruby_2.7_opensearch_latest.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_opensearch_latest.gemfile.lock b/gemfiles/ruby_2.7_opensearch_latest.gemfile.lock index c7393c37430..739c068065f 100644 --- a/gemfiles/ruby_2.7_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_2.7_opensearch_latest.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -59,8 +59,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -176,7 +176,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_opentelemetry.gemfile b/gemfiles/ruby_2.7_opentelemetry.gemfile index 971af11d669..c4c72fa86c1 100644 --- a/gemfiles/ruby_2.7_opentelemetry.gemfile +++ b/gemfiles/ruby_2.7_opentelemetry.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_opentelemetry.gemfile.lock b/gemfiles/ruby_2.7_opentelemetry.gemfile.lock index c5ceb28f67a..7befaecdfdf 100755 --- a/gemfiles/ruby_2.7_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_2.7_opentelemetry.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -51,8 +51,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -93,21 +93,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -174,7 +174,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile b/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile index 7430604197d..2fff3884dd9 100644 --- a/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile +++ b/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile.lock index 852b75ca06d..d925d339289 100644 --- a/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_2.7_opentelemetry_otlp.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -56,8 +56,8 @@ GEM json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -188,7 +188,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_rack_1.gemfile b/gemfiles/ruby_2.7_rack_1.gemfile index 77f45a2e1c1..468a0ce01f4 100644 --- a/gemfiles/ruby_2.7_rack_1.gemfile +++ b/gemfiles/ruby_2.7_rack_1.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_rack_1.gemfile.lock b/gemfiles/ruby_2.7_rack_1.gemfile.lock index 968bc36d5cb..2804ba897da 100644 --- a/gemfiles/ruby_2.7_rack_1.gemfile.lock +++ b/gemfiles/ruby_2.7_rack_1.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -51,8 +51,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -88,21 +88,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -171,7 +171,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_rack_2.gemfile b/gemfiles/ruby_2.7_rack_2.gemfile index f7992c433dc..96cb5c8f5c8 100644 --- a/gemfiles/ruby_2.7_rack_2.gemfile +++ b/gemfiles/ruby_2.7_rack_2.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_rack_2.gemfile.lock b/gemfiles/ruby_2.7_rack_2.gemfile.lock index 5a45843364d..a1c584bb2da 100644 --- a/gemfiles/ruby_2.7_rack_2.gemfile.lock +++ b/gemfiles/ruby_2.7_rack_2.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -51,8 +51,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -88,21 +88,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -171,7 +171,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_rack_3.gemfile b/gemfiles/ruby_2.7_rack_3.gemfile index e986c841531..86307adc8c0 100644 --- a/gemfiles/ruby_2.7_rack_3.gemfile +++ b/gemfiles/ruby_2.7_rack_3.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_rack_3.gemfile.lock b/gemfiles/ruby_2.7_rack_3.gemfile.lock index 6889b0c3609..35f20631441 100644 --- a/gemfiles/ruby_2.7_rack_3.gemfile.lock +++ b/gemfiles/ruby_2.7_rack_3.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -51,8 +51,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -88,21 +88,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -171,7 +171,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_rack_latest.gemfile b/gemfiles/ruby_2.7_rack_latest.gemfile index f9106b47801..ee6d9f05348 100644 --- a/gemfiles/ruby_2.7_rack_latest.gemfile +++ b/gemfiles/ruby_2.7_rack_latest.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_rack_latest.gemfile.lock b/gemfiles/ruby_2.7_rack_latest.gemfile.lock index 18e95fb90c8..1dff6e11209 100644 --- a/gemfiles/ruby_2.7_rack_latest.gemfile.lock +++ b/gemfiles/ruby_2.7_rack_latest.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -54,8 +54,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -173,7 +173,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_rails5_mysql2.gemfile b/gemfiles/ruby_2.7_rails5_mysql2.gemfile index 452cd51ef85..56a1c7f6a1f 100644 --- a/gemfiles/ruby_2.7_rails5_mysql2.gemfile +++ b/gemfiles/ruby_2.7_rails5_mysql2.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_rails5_mysql2.gemfile.lock b/gemfiles/ruby_2.7_rails5_mysql2.gemfile.lock index a0dc6e4d16a..128fabedfe6 100644 --- a/gemfiles/ruby_2.7_rails5_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.7_rails5_mysql2.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -101,8 +101,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -192,21 +192,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -289,7 +289,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_rails5_postgres.gemfile b/gemfiles/ruby_2.7_rails5_postgres.gemfile index c7dfc8dc9a7..809fc428c9a 100644 --- a/gemfiles/ruby_2.7_rails5_postgres.gemfile +++ b/gemfiles/ruby_2.7_rails5_postgres.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_rails5_postgres.gemfile.lock b/gemfiles/ruby_2.7_rails5_postgres.gemfile.lock index d2ecf94a6ce..c0865da43d6 100644 --- a/gemfiles/ruby_2.7_rails5_postgres.gemfile.lock +++ b/gemfiles/ruby_2.7_rails5_postgres.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -101,8 +101,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -192,21 +192,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -289,7 +289,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile b/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile index 69f95c69966..54102d56929 100644 --- a/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile +++ b/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile.lock b/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile.lock index 69146c1173a..af4fc4cc590 100644 --- a/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.7_rails5_postgres_redis.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -101,8 +101,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -193,21 +193,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -291,7 +291,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 4) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_rails5_postgres_redis_activesupport.gemfile b/gemfiles/ruby_2.7_rails5_postgres_redis_activesupport.gemfile index 0a3c1445696..fb4105bafcc 100644 --- a/gemfiles/ruby_2.7_rails5_postgres_redis_activesupport.gemfile +++ b/gemfiles/ruby_2.7_rails5_postgres_redis_activesupport.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.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 fd5ca77d1b0..44cc2f6b173 100644 --- a/gemfiles/ruby_2.7_rails5_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.7_rails5_postgres_redis_activesupport.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -101,8 +101,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -209,21 +209,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -309,7 +309,7 @@ DEPENDENCIES redis-rails redis-store (>= 1.4, < 2) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile b/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile index a280d322d8e..65080f46f52 100644 --- a/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile.lock index cc952b2d46b..bc6c43a3d8b 100644 --- a/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.7_rails5_postgres_sidekiq.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -102,8 +102,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -194,21 +194,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -296,7 +296,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile b/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile index f9c652493b7..69ce09e05a4 100644 --- a/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile +++ b/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile.lock b/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile.lock index 7d2c549bb92..6f7b0ada6a9 100644 --- a/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.7_rails5_semantic_logger.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -101,8 +101,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -189,21 +189,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -288,7 +288,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_rails61_mysql2.gemfile b/gemfiles/ruby_2.7_rails61_mysql2.gemfile index 2df31e3b9e5..9d4e799b087 100644 --- a/gemfiles/ruby_2.7_rails61_mysql2.gemfile +++ b/gemfiles/ruby_2.7_rails61_mysql2.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_rails61_mysql2.gemfile.lock b/gemfiles/ruby_2.7_rails61_mysql2.gemfile.lock index a15f5da6751..52984cf84a7 100644 --- a/gemfiles/ruby_2.7_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.7_rails61_mysql2.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -118,8 +118,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -211,21 +211,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -308,7 +308,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_rails61_postgres.gemfile b/gemfiles/ruby_2.7_rails61_postgres.gemfile index 68da2d61648..6e128e6b160 100644 --- a/gemfiles/ruby_2.7_rails61_postgres.gemfile +++ b/gemfiles/ruby_2.7_rails61_postgres.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_rails61_postgres.gemfile.lock b/gemfiles/ruby_2.7_rails61_postgres.gemfile.lock index ded8481bad7..4ecc715b328 100644 --- a/gemfiles/ruby_2.7_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_2.7_rails61_postgres.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -118,8 +118,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -211,21 +211,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -308,7 +308,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile b/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile index 458c2952c3a..0aab4e650fd 100644 --- a/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile +++ b/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile.lock index 124165a2210..26a7fd49d4a 100644 --- a/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.7_rails61_postgres_redis.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -118,8 +118,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -212,21 +212,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -310,7 +310,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 4) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile b/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile index 86c315a66f0..ea4e599ac4b 100644 --- a/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile.lock index 42018633b41..e302f5a9c87 100644 --- a/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.7_rails61_postgres_sidekiq.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -119,8 +119,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -214,21 +214,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -316,7 +316,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile b/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile index 53811f2a58a..75d816a382d 100644 --- a/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile +++ b/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile.lock index b7fadf475ac..b71be73d840 100644 --- a/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.7_rails61_semantic_logger.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -118,8 +118,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -208,21 +208,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -307,7 +307,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_rails6_mysql2.gemfile b/gemfiles/ruby_2.7_rails6_mysql2.gemfile index 700c42b3800..5b6206158c9 100644 --- a/gemfiles/ruby_2.7_rails6_mysql2.gemfile +++ b/gemfiles/ruby_2.7_rails6_mysql2.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_rails6_mysql2.gemfile.lock b/gemfiles/ruby_2.7_rails6_mysql2.gemfile.lock index 5394684ddc5..e02c7161be4 100644 --- a/gemfiles/ruby_2.7_rails6_mysql2.gemfile.lock +++ b/gemfiles/ruby_2.7_rails6_mysql2.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -114,8 +114,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -207,21 +207,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -305,7 +305,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_rails6_postgres.gemfile b/gemfiles/ruby_2.7_rails6_postgres.gemfile index 7f28529b264..1129f40dd7e 100644 --- a/gemfiles/ruby_2.7_rails6_postgres.gemfile +++ b/gemfiles/ruby_2.7_rails6_postgres.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_rails6_postgres.gemfile.lock b/gemfiles/ruby_2.7_rails6_postgres.gemfile.lock index 80f708b91b1..6ce92201126 100644 --- a/gemfiles/ruby_2.7_rails6_postgres.gemfile.lock +++ b/gemfiles/ruby_2.7_rails6_postgres.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -114,8 +114,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -207,21 +207,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -305,7 +305,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile b/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile index d72ab9a3bfa..64f5f700cc0 100644 --- a/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile +++ b/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile.lock b/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile.lock index 16b240fe732..e8be234d81e 100644 --- a/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_2.7_rails6_postgres_redis.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -114,8 +114,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -208,21 +208,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -307,7 +307,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 4) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_rails6_postgres_redis_activesupport.gemfile b/gemfiles/ruby_2.7_rails6_postgres_redis_activesupport.gemfile index 3f6e4f30c6f..2f7880f2da5 100644 --- a/gemfiles/ruby_2.7_rails6_postgres_redis_activesupport.gemfile +++ b/gemfiles/ruby_2.7_rails6_postgres_redis_activesupport.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.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 f193a876068..2cf5272ebbd 100644 --- a/gemfiles/ruby_2.7_rails6_postgres_redis_activesupport.gemfile.lock +++ b/gemfiles/ruby_2.7_rails6_postgres_redis_activesupport.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -114,8 +114,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -224,21 +224,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -325,7 +325,7 @@ DEPENDENCIES redis-rails redis-store (>= 1.4, < 2) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile b/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile index 580eaabb162..7430192f5ff 100644 --- a/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile.lock index 015e8dd078d..b0635f43fe1 100644 --- a/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_2.7_rails6_postgres_sidekiq.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -115,8 +115,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -209,21 +209,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -312,7 +312,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile b/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile index 72f94f77850..06299efe6d0 100644 --- a/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile +++ b/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile.lock b/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile.lock index 6dc1e9ce4ec..4d9c672d7b0 100644 --- a/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_2.7_rails6_semantic_logger.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -114,8 +114,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -204,21 +204,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -304,7 +304,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_redis_3.gemfile b/gemfiles/ruby_2.7_redis_3.gemfile index 996e935b65a..090ed5683d1 100644 --- a/gemfiles/ruby_2.7_redis_3.gemfile +++ b/gemfiles/ruby_2.7_redis_3.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_redis_3.gemfile.lock b/gemfiles/ruby_2.7_redis_3.gemfile.lock index f44c22467e3..f9582286756 100644 --- a/gemfiles/ruby_2.7_redis_3.gemfile.lock +++ b/gemfiles/ruby_2.7_redis_3.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -51,8 +51,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -82,21 +82,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -163,7 +163,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 3) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_redis_4.gemfile b/gemfiles/ruby_2.7_redis_4.gemfile index 9775e091813..cd10fcda96b 100644 --- a/gemfiles/ruby_2.7_redis_4.gemfile +++ b/gemfiles/ruby_2.7_redis_4.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_redis_4.gemfile.lock b/gemfiles/ruby_2.7_redis_4.gemfile.lock index 39a266a7105..64d665b5bad 100644 --- a/gemfiles/ruby_2.7_redis_4.gemfile.lock +++ b/gemfiles/ruby_2.7_redis_4.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -51,8 +51,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -82,21 +82,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -163,7 +163,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 4) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_redis_5.gemfile b/gemfiles/ruby_2.7_redis_5.gemfile index 1e1bb3b807e..491d8555b95 100644 --- a/gemfiles/ruby_2.7_redis_5.gemfile +++ b/gemfiles/ruby_2.7_redis_5.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_redis_5.gemfile.lock b/gemfiles/ruby_2.7_redis_5.gemfile.lock index 3c17a222dac..790a95953ac 100644 --- a/gemfiles/ruby_2.7_redis_5.gemfile.lock +++ b/gemfiles/ruby_2.7_redis_5.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -52,8 +52,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -86,21 +86,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -167,7 +167,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 5) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_relational_db.gemfile b/gemfiles/ruby_2.7_relational_db.gemfile index 9baf3bde1c2..925b2b96e0d 100644 --- a/gemfiles/ruby_2.7_relational_db.gemfile +++ b/gemfiles/ruby_2.7_relational_db.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_relational_db.gemfile.lock b/gemfiles/ruby_2.7_relational_db.gemfile.lock index 1ee3600fe98..50d86da3be1 100644 --- a/gemfiles/ruby_2.7_relational_db.gemfile.lock +++ b/gemfiles/ruby_2.7_relational_db.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -70,8 +70,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -107,21 +107,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -199,7 +199,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_resque2_redis3.gemfile b/gemfiles/ruby_2.7_resque2_redis3.gemfile index 746a740a460..e1f118cd4c3 100644 --- a/gemfiles/ruby_2.7_resque2_redis3.gemfile +++ b/gemfiles/ruby_2.7_resque2_redis3.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_resque2_redis3.gemfile.lock b/gemfiles/ruby_2.7_resque2_redis3.gemfile.lock index a2b58b83f6d..15d36711bcb 100644 --- a/gemfiles/ruby_2.7_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_2.7_resque2_redis3.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -51,8 +51,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -96,21 +96,21 @@ GEM sinatra (>= 0.9.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -185,7 +185,7 @@ DEPENDENCIES redis (< 4.0) resque (>= 2.0) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_resque2_redis4.gemfile b/gemfiles/ruby_2.7_resque2_redis4.gemfile index 3f8e978b4d5..42cfd6732c7 100644 --- a/gemfiles/ruby_2.7_resque2_redis4.gemfile +++ b/gemfiles/ruby_2.7_resque2_redis4.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_resque2_redis4.gemfile.lock b/gemfiles/ruby_2.7_resque2_redis4.gemfile.lock index e9bd3f8e35c..1fa16d84cce 100644 --- a/gemfiles/ruby_2.7_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_2.7_resque2_redis4.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -51,8 +51,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -96,21 +96,21 @@ GEM sinatra (>= 0.9.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -185,7 +185,7 @@ DEPENDENCIES redis (~> 4.0) resque (>= 2.0) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_sinatra_2.gemfile b/gemfiles/ruby_2.7_sinatra_2.gemfile index 5a70633a2f9..9929dee84ff 100644 --- a/gemfiles/ruby_2.7_sinatra_2.gemfile +++ b/gemfiles/ruby_2.7_sinatra_2.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_sinatra_2.gemfile.lock b/gemfiles/ruby_2.7_sinatra_2.gemfile.lock index d5dc4bde25c..89d18bf3b47 100644 --- a/gemfiles/ruby_2.7_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_2.7_sinatra_2.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -54,8 +54,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -185,7 +185,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_sinatra_3.gemfile b/gemfiles/ruby_2.7_sinatra_3.gemfile index 5fc3a7497ed..b9441dbdc40 100644 --- a/gemfiles/ruby_2.7_sinatra_3.gemfile +++ b/gemfiles/ruby_2.7_sinatra_3.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_sinatra_3.gemfile.lock b/gemfiles/ruby_2.7_sinatra_3.gemfile.lock index 55281f0e6fc..08f2c4e5087 100644 --- a/gemfiles/ruby_2.7_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_2.7_sinatra_3.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -55,8 +55,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -187,7 +187,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_stripe_10.gemfile b/gemfiles/ruby_2.7_stripe_10.gemfile index d98960c9b0c..129b39b8d7d 100644 --- a/gemfiles/ruby_2.7_stripe_10.gemfile +++ b/gemfiles/ruby_2.7_stripe_10.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_stripe_10.gemfile.lock b/gemfiles/ruby_2.7_stripe_10.gemfile.lock index 9d3d1dee134..4f9a7e11695 100644 --- a/gemfiles/ruby_2.7_stripe_10.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_10.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -53,8 +53,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -167,7 +167,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_stripe_11.gemfile b/gemfiles/ruby_2.7_stripe_11.gemfile index 2dda2d49d55..12f1d1847e6 100644 --- a/gemfiles/ruby_2.7_stripe_11.gemfile +++ b/gemfiles/ruby_2.7_stripe_11.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_stripe_11.gemfile.lock b/gemfiles/ruby_2.7_stripe_11.gemfile.lock index f34b3878daa..de88fe3e665 100644 --- a/gemfiles/ruby_2.7_stripe_11.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_11.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -53,8 +53,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -167,7 +167,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_stripe_12.gemfile b/gemfiles/ruby_2.7_stripe_12.gemfile index 7b893aa3bd3..ce9e9670bbd 100644 --- a/gemfiles/ruby_2.7_stripe_12.gemfile +++ b/gemfiles/ruby_2.7_stripe_12.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_stripe_12.gemfile.lock b/gemfiles/ruby_2.7_stripe_12.gemfile.lock index b93ab8cb385..f85fed9291b 100644 --- a/gemfiles/ruby_2.7_stripe_12.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_12.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -53,8 +53,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -167,7 +167,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_stripe_7.gemfile b/gemfiles/ruby_2.7_stripe_7.gemfile index deb3416be7f..888098f6ca9 100644 --- a/gemfiles/ruby_2.7_stripe_7.gemfile +++ b/gemfiles/ruby_2.7_stripe_7.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_stripe_7.gemfile.lock b/gemfiles/ruby_2.7_stripe_7.gemfile.lock index fb5b39d7dcd..e252fb6f36e 100644 --- a/gemfiles/ruby_2.7_stripe_7.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_7.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -53,8 +53,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -167,7 +167,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_stripe_8.gemfile b/gemfiles/ruby_2.7_stripe_8.gemfile index 6cd7cf2fcdf..63441ad2d56 100644 --- a/gemfiles/ruby_2.7_stripe_8.gemfile +++ b/gemfiles/ruby_2.7_stripe_8.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_stripe_8.gemfile.lock b/gemfiles/ruby_2.7_stripe_8.gemfile.lock index 3cf7b42801d..8402c938627 100644 --- a/gemfiles/ruby_2.7_stripe_8.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_8.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -53,8 +53,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -167,7 +167,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_stripe_9.gemfile b/gemfiles/ruby_2.7_stripe_9.gemfile index 8f8ed25ce60..301feb65b24 100644 --- a/gemfiles/ruby_2.7_stripe_9.gemfile +++ b/gemfiles/ruby_2.7_stripe_9.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_stripe_9.gemfile.lock b/gemfiles/ruby_2.7_stripe_9.gemfile.lock index e9eb2ff7da1..6e1b1584deb 100644 --- a/gemfiles/ruby_2.7_stripe_9.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_9.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -53,8 +53,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -167,7 +167,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_stripe_latest.gemfile b/gemfiles/ruby_2.7_stripe_latest.gemfile index c2f71b9eb16..a01cb9defa3 100644 --- a/gemfiles/ruby_2.7_stripe_latest.gemfile +++ b/gemfiles/ruby_2.7_stripe_latest.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_stripe_latest.gemfile.lock b/gemfiles/ruby_2.7_stripe_latest.gemfile.lock index 33721327ff9..843136565ad 100644 --- a/gemfiles/ruby_2.7_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_latest.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -53,8 +53,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -132,7 +132,7 @@ GEM simplecov (~> 0.19) simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) - stripe (13.0.2) + stripe (13.1.0) thor (1.3.2) unicode-display_width (2.6.0) warning (1.4.0) @@ -165,7 +165,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_2.7_stripe_min.gemfile b/gemfiles/ruby_2.7_stripe_min.gemfile index d4fc7f3260d..279c2c1d23b 100644 --- a/gemfiles/ruby_2.7_stripe_min.gemfile +++ b/gemfiles/ruby_2.7_stripe_min.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_2.7_stripe_min.gemfile.lock b/gemfiles/ruby_2.7_stripe_min.gemfile.lock index 8150c542000..1b34bccfb86 100644 --- a/gemfiles/ruby_2.7_stripe_min.gemfile.lock +++ b/gemfiles/ruby_2.7_stripe_min.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -54,8 +54,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -166,7 +166,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_activesupport.gemfile b/gemfiles/ruby_3.0_activesupport.gemfile index ad753ca193c..c66f3272290 100644 --- a/gemfiles/ruby_3.0_activesupport.gemfile +++ b/gemfiles/ruby_3.0_activesupport.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_activesupport.gemfile.lock b/gemfiles/ruby_3.0_activesupport.gemfile.lock index e8b37a4a5a0..8cc44b5f586 100644 --- a/gemfiles/ruby_3.0_activesupport.gemfile.lock +++ b/gemfiles/ruby_3.0_activesupport.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -108,8 +108,8 @@ GEM addressable (>= 2.4) jsonapi-renderer (0.2.2) king_konf (1.0.1) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -186,21 +186,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -280,7 +280,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_aws.gemfile b/gemfiles/ruby_3.0_aws.gemfile index 08a4b53cca3..141dd4945d4 100644 --- a/gemfiles/ruby_3.0_aws.gemfile +++ b/gemfiles/ruby_3.0_aws.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_aws.gemfile.lock b/gemfiles/ruby_3.0_aws.gemfile.lock index 821ecddaa09..b72e1996a02 100644 --- a/gemfiles/ruby_3.0_aws.gemfile.lock +++ b/gemfiles/ruby_3.0_aws.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -1473,8 +1473,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -1505,21 +1505,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -1591,7 +1591,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_contrib.gemfile b/gemfiles/ruby_3.0_contrib.gemfile index 0d57f781afa..14f9732f151 100644 --- a/gemfiles/ruby_3.0_contrib.gemfile +++ b/gemfiles/ruby_3.0_contrib.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 12.3" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_contrib.gemfile.lock b/gemfiles/ruby_3.0_contrib.gemfile.lock index ca9b0417d7e..c38514a74ba 100644 --- a/gemfiles/ruby_3.0_contrib.gemfile.lock +++ b/gemfiles/ruby_3.0_contrib.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -66,8 +66,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -121,21 +121,21 @@ GEM strscan (>= 3.0.9) roda (3.65.0) rack - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -238,7 +238,7 @@ DEPENDENCIES resque rexml (>= 3.2.7) roda (>= 2.0.0) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_contrib_old.gemfile b/gemfiles/ruby_3.0_contrib_old.gemfile index 2f753d3ec21..c281b2784fd 100644 --- a/gemfiles/ruby_3.0_contrib_old.gemfile +++ b/gemfiles/ruby_3.0_contrib_old.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_contrib_old.gemfile.lock b/gemfiles/ruby_3.0_contrib_old.gemfile.lock index 26318e633f9..bce59cf81da 100644 --- a/gemfiles/ruby_3.0_contrib_old.gemfile.lock +++ b/gemfiles/ruby_3.0_contrib_old.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -62,8 +62,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -117,21 +117,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -218,7 +218,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_core_old.gemfile b/gemfiles/ruby_3.0_core_old.gemfile index 01f6865e03b..92a913e9a5f 100644 --- a/gemfiles/ruby_3.0_core_old.gemfile +++ b/gemfiles/ruby_3.0_core_old.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_core_old.gemfile.lock b/gemfiles/ruby_3.0_core_old.gemfile.lock index c14de47bb82..3860b230364 100644 --- a/gemfiles/ruby_3.0_core_old.gemfile.lock +++ b/gemfiles/ruby_3.0_core_old.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -51,8 +51,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -81,21 +81,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -162,7 +162,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_elasticsearch_7.gemfile b/gemfiles/ruby_3.0_elasticsearch_7.gemfile index 4b83240d43d..7b522e07485 100644 --- a/gemfiles/ruby_3.0_elasticsearch_7.gemfile +++ b/gemfiles/ruby_3.0_elasticsearch_7.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_elasticsearch_7.gemfile.lock b/gemfiles/ruby_3.0_elasticsearch_7.gemfile.lock index 280b70d0bd6..649a93c04f3 100644 --- a/gemfiles/ruby_3.0_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_3.0_elasticsearch_7.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -65,11 +65,11 @@ 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 (2.7.5) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -105,21 +105,21 @@ GEM regexp_parser (2.8.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -188,7 +188,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_elasticsearch_8.gemfile b/gemfiles/ruby_3.0_elasticsearch_8.gemfile index cda6467b661..86364bc6bfb 100644 --- a/gemfiles/ruby_3.0_elasticsearch_8.gemfile +++ b/gemfiles/ruby_3.0_elasticsearch_8.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_elasticsearch_8.gemfile.lock b/gemfiles/ruby_3.0_elasticsearch_8.gemfile.lock index 0542f43d0e9..1300d1fc917 100644 --- a/gemfiles/ruby_3.0_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_3.0_elasticsearch_8.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -63,11 +63,11 @@ 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 (2.7.5) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -103,21 +103,21 @@ GEM regexp_parser (2.8.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -186,7 +186,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_elasticsearch_latest.gemfile b/gemfiles/ruby_3.0_elasticsearch_latest.gemfile index 62a64ac5335..4c2fc508d18 100644 --- a/gemfiles/ruby_3.0_elasticsearch_latest.gemfile +++ b/gemfiles/ruby_3.0_elasticsearch_latest.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_3.0_elasticsearch_latest.gemfile.lock index d65c1f4f06c..8f50c5d3102 100644 --- a/gemfiles/ruby_3.0_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.0_elasticsearch_latest.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -65,11 +65,11 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.7.4) + json (2.7.5) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -186,7 +186,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_graphql_1.13.gemfile b/gemfiles/ruby_3.0_graphql_1.13.gemfile index b54ffe6e5ea..51e0e7b961d 100644 --- a/gemfiles/ruby_3.0_graphql_1.13.gemfile +++ b/gemfiles/ruby_3.0_graphql_1.13.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_graphql_1.13.gemfile.lock b/gemfiles/ruby_3.0_graphql_1.13.gemfile.lock index 14a0efe796c..95faa7bd8e6 100644 --- a/gemfiles/ruby_3.0_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_3.0_graphql_1.13.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -121,8 +121,8 @@ GEM json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -217,21 +217,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -316,7 +316,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_graphql_2.0.gemfile b/gemfiles/ruby_3.0_graphql_2.0.gemfile index 495f9d14955..823f7542312 100644 --- a/gemfiles/ruby_3.0_graphql_2.0.gemfile +++ b/gemfiles/ruby_3.0_graphql_2.0.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_graphql_2.0.gemfile.lock b/gemfiles/ruby_3.0_graphql_2.0.gemfile.lock index 73b248efef7..8ee0c7132ee 100644 --- a/gemfiles/ruby_3.0_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_3.0_graphql_2.0.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -121,8 +121,8 @@ GEM json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -217,21 +217,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -316,7 +316,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_graphql_2.1.gemfile b/gemfiles/ruby_3.0_graphql_2.1.gemfile index cb18c1c3254..35f6c7207a9 100644 --- a/gemfiles/ruby_3.0_graphql_2.1.gemfile +++ b/gemfiles/ruby_3.0_graphql_2.1.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_graphql_2.1.gemfile.lock b/gemfiles/ruby_3.0_graphql_2.1.gemfile.lock index f40a3ac723f..2ecb4c9830e 100644 --- a/gemfiles/ruby_3.0_graphql_2.1.gemfile.lock +++ b/gemfiles/ruby_3.0_graphql_2.1.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -122,8 +122,8 @@ GEM json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -218,21 +218,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -317,7 +317,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_graphql_2.2.gemfile b/gemfiles/ruby_3.0_graphql_2.2.gemfile index af077d7589c..1b43195b410 100644 --- a/gemfiles/ruby_3.0_graphql_2.2.gemfile +++ b/gemfiles/ruby_3.0_graphql_2.2.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_graphql_2.2.gemfile.lock b/gemfiles/ruby_3.0_graphql_2.2.gemfile.lock index 9ecebd98645..6f6f3b9ed0f 100644 --- a/gemfiles/ruby_3.0_graphql_2.2.gemfile.lock +++ b/gemfiles/ruby_3.0_graphql_2.2.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -122,8 +122,8 @@ GEM json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -218,21 +218,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -317,7 +317,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_graphql_2.3.gemfile b/gemfiles/ruby_3.0_graphql_2.3.gemfile index 1dfff1f0739..d2e58af0344 100644 --- a/gemfiles/ruby_3.0_graphql_2.3.gemfile +++ b/gemfiles/ruby_3.0_graphql_2.3.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_graphql_2.3.gemfile.lock b/gemfiles/ruby_3.0_graphql_2.3.gemfile.lock index 13c6803e3a3..d8f9221f961 100644 --- a/gemfiles/ruby_3.0_graphql_2.3.gemfile.lock +++ b/gemfiles/ruby_3.0_graphql_2.3.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -124,8 +124,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -319,7 +319,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_http.gemfile b/gemfiles/ruby_3.0_http.gemfile index c87c6a2a894..7c65171f882 100644 --- a/gemfiles/ruby_3.0_http.gemfile +++ b/gemfiles/ruby_3.0_http.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_http.gemfile.lock b/gemfiles/ruby_3.0_http.gemfile.lock index bb2cb2ff26c..be591905ad2 100644 --- a/gemfiles/ruby_3.0_http.gemfile.lock +++ b/gemfiles/ruby_3.0_http.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -73,8 +73,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -117,21 +117,21 @@ GEM netrc (~> 0.8) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -210,7 +210,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) rest-client rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_opensearch_2.gemfile b/gemfiles/ruby_3.0_opensearch_2.gemfile index 9739b756d81..942a6317e60 100644 --- a/gemfiles/ruby_3.0_opensearch_2.gemfile +++ b/gemfiles/ruby_3.0_opensearch_2.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_opensearch_2.gemfile.lock b/gemfiles/ruby_3.0_opensearch_2.gemfile.lock index 4d75ccca9bb..d767692b552 100644 --- a/gemfiles/ruby_3.0_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_3.0_opensearch_2.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -55,11 +55,11 @@ 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 (2.7.5) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -103,21 +103,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -186,7 +186,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_opensearch_3.gemfile b/gemfiles/ruby_3.0_opensearch_3.gemfile index 2667385fb26..af8a063286a 100644 --- a/gemfiles/ruby_3.0_opensearch_3.gemfile +++ b/gemfiles/ruby_3.0_opensearch_3.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_opensearch_3.gemfile.lock b/gemfiles/ruby_3.0_opensearch_3.gemfile.lock index 75502884620..bfe94524ea4 100644 --- a/gemfiles/ruby_3.0_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_3.0_opensearch_3.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -55,11 +55,11 @@ 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 (2.7.5) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -98,21 +98,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -181,7 +181,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_opensearch_latest.gemfile b/gemfiles/ruby_3.0_opensearch_latest.gemfile index f6a4a79a50a..d288085baab 100644 --- a/gemfiles/ruby_3.0_opensearch_latest.gemfile +++ b/gemfiles/ruby_3.0_opensearch_latest.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_opensearch_latest.gemfile.lock b/gemfiles/ruby_3.0_opensearch_latest.gemfile.lock index 1bc99cb6105..f79366d20e7 100644 --- a/gemfiles/ruby_3.0_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.0_opensearch_latest.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -57,11 +57,11 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.7.4) + json (2.7.5) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -181,7 +181,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_opentelemetry.gemfile b/gemfiles/ruby_3.0_opentelemetry.gemfile index 2a72364a885..29ccc01c677 100644 --- a/gemfiles/ruby_3.0_opentelemetry.gemfile +++ b/gemfiles/ruby_3.0_opentelemetry.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_opentelemetry.gemfile.lock b/gemfiles/ruby_3.0_opentelemetry.gemfile.lock index 11a661c6f11..d3e73887843 100755 --- a/gemfiles/ruby_3.0_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_3.0_opentelemetry.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -51,8 +51,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -93,21 +93,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -175,7 +175,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_opentelemetry_otlp.gemfile b/gemfiles/ruby_3.0_opentelemetry_otlp.gemfile index e3a336f0ad2..ff36c718bf3 100644 --- a/gemfiles/ruby_3.0_opentelemetry_otlp.gemfile +++ b/gemfiles/ruby_3.0_opentelemetry_otlp.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_3.0_opentelemetry_otlp.gemfile.lock index a3db2468fe5..fb8e3e39b27 100644 --- a/gemfiles/ruby_3.0_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_3.0_opentelemetry_otlp.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -56,8 +56,8 @@ GEM json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -189,7 +189,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_rack_1.gemfile b/gemfiles/ruby_3.0_rack_1.gemfile index d56ea818c17..69978ac3c78 100644 --- a/gemfiles/ruby_3.0_rack_1.gemfile +++ b/gemfiles/ruby_3.0_rack_1.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_rack_1.gemfile.lock b/gemfiles/ruby_3.0_rack_1.gemfile.lock index a91469c88e9..1a1adde5b2c 100644 --- a/gemfiles/ruby_3.0_rack_1.gemfile.lock +++ b/gemfiles/ruby_3.0_rack_1.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -51,8 +51,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -88,21 +88,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -172,7 +172,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_rack_2.gemfile b/gemfiles/ruby_3.0_rack_2.gemfile index 42acfe1a08e..ef520c3e299 100644 --- a/gemfiles/ruby_3.0_rack_2.gemfile +++ b/gemfiles/ruby_3.0_rack_2.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_rack_2.gemfile.lock b/gemfiles/ruby_3.0_rack_2.gemfile.lock index 9afe8a8ed37..7770459214e 100644 --- a/gemfiles/ruby_3.0_rack_2.gemfile.lock +++ b/gemfiles/ruby_3.0_rack_2.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -51,8 +51,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -88,21 +88,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -172,7 +172,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_rack_3.gemfile b/gemfiles/ruby_3.0_rack_3.gemfile index cd189b68684..b85f711288c 100644 --- a/gemfiles/ruby_3.0_rack_3.gemfile +++ b/gemfiles/ruby_3.0_rack_3.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_rack_3.gemfile.lock b/gemfiles/ruby_3.0_rack_3.gemfile.lock index 0ae6f9f7ed9..311a62747ef 100644 --- a/gemfiles/ruby_3.0_rack_3.gemfile.lock +++ b/gemfiles/ruby_3.0_rack_3.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -51,8 +51,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -88,21 +88,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -172,7 +172,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_rack_latest.gemfile b/gemfiles/ruby_3.0_rack_latest.gemfile index dcc5c722ac0..ea470ee9850 100644 --- a/gemfiles/ruby_3.0_rack_latest.gemfile +++ b/gemfiles/ruby_3.0_rack_latest.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_rack_latest.gemfile.lock b/gemfiles/ruby_3.0_rack_latest.gemfile.lock index fa607ca17a1..41e77d60889 100644 --- a/gemfiles/ruby_3.0_rack_latest.gemfile.lock +++ b/gemfiles/ruby_3.0_rack_latest.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -54,8 +54,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -174,7 +174,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_rails61_mysql2.gemfile b/gemfiles/ruby_3.0_rails61_mysql2.gemfile index bc9cd65d0cb..1f8975c3cf7 100644 --- a/gemfiles/ruby_3.0_rails61_mysql2.gemfile +++ b/gemfiles/ruby_3.0_rails61_mysql2.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_rails61_mysql2.gemfile.lock b/gemfiles/ruby_3.0_rails61_mysql2.gemfile.lock index 9acbd0b1c1a..98d50f81087 100644 --- a/gemfiles/ruby_3.0_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_3.0_rails61_mysql2.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -118,8 +118,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -211,21 +211,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -310,7 +310,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_rails61_postgres.gemfile b/gemfiles/ruby_3.0_rails61_postgres.gemfile index 86c369ceb8e..76cfde9b59f 100644 --- a/gemfiles/ruby_3.0_rails61_postgres.gemfile +++ b/gemfiles/ruby_3.0_rails61_postgres.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_rails61_postgres.gemfile.lock b/gemfiles/ruby_3.0_rails61_postgres.gemfile.lock index bba73d1bb07..801a4c86f33 100644 --- a/gemfiles/ruby_3.0_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_3.0_rails61_postgres.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -118,8 +118,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -211,21 +211,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -310,7 +310,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_rails61_postgres_redis.gemfile b/gemfiles/ruby_3.0_rails61_postgres_redis.gemfile index 4b231e63314..5971fb2833f 100644 --- a/gemfiles/ruby_3.0_rails61_postgres_redis.gemfile +++ b/gemfiles/ruby_3.0_rails61_postgres_redis.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_3.0_rails61_postgres_redis.gemfile.lock index 407e95b295e..46b0fb6dd04 100644 --- a/gemfiles/ruby_3.0_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_3.0_rails61_postgres_redis.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -118,8 +118,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -212,21 +212,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -312,7 +312,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 4) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile b/gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile index 9bad3ac655b..911c472e64f 100644 --- a/gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile.lock index 5c96fdbe69b..d2124c706bf 100644 --- a/gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_3.0_rails61_postgres_sidekiq.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -119,8 +119,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -218,21 +218,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -325,7 +325,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_rails61_semantic_logger.gemfile b/gemfiles/ruby_3.0_rails61_semantic_logger.gemfile index 94354201a7d..c09904ebd34 100644 --- a/gemfiles/ruby_3.0_rails61_semantic_logger.gemfile +++ b/gemfiles/ruby_3.0_rails61_semantic_logger.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_3.0_rails61_semantic_logger.gemfile.lock index 9dd38129ec8..7033dbedd0d 100644 --- a/gemfiles/ruby_3.0_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_3.0_rails61_semantic_logger.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -118,8 +118,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -208,21 +208,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -309,7 +309,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_rails61_trilogy.gemfile b/gemfiles/ruby_3.0_rails61_trilogy.gemfile index 0b8b1f4b468..5f6873afce7 100644 --- a/gemfiles/ruby_3.0_rails61_trilogy.gemfile +++ b/gemfiles/ruby_3.0_rails61_trilogy.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_rails61_trilogy.gemfile.lock b/gemfiles/ruby_3.0_rails61_trilogy.gemfile.lock index a23c8425e42..fb5d3ac8379 100644 --- a/gemfiles/ruby_3.0_rails61_trilogy.gemfile.lock +++ b/gemfiles/ruby_3.0_rails61_trilogy.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -122,8 +122,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -218,21 +218,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -318,7 +318,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_rails7.gemfile b/gemfiles/ruby_3.0_rails7.gemfile index 6d74fd2b67f..cc49a50fbf2 100644 --- a/gemfiles/ruby_3.0_rails7.gemfile +++ b/gemfiles/ruby_3.0_rails7.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_rails7.gemfile.lock b/gemfiles/ruby_3.0_rails7.gemfile.lock index ecb3f64d667..e6e1e667a02 100644 --- a/gemfiles/ruby_3.0_rails7.gemfile.lock +++ b/gemfiles/ruby_3.0_rails7.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -127,8 +127,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -305,7 +305,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_rails71.gemfile b/gemfiles/ruby_3.0_rails71.gemfile index 8e458e2c987..db7b37889a8 100644 --- a/gemfiles/ruby_3.0_rails71.gemfile +++ b/gemfiles/ruby_3.0_rails71.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_rails71.gemfile.lock b/gemfiles/ruby_3.0_rails71.gemfile.lock index f42cd4cc61d..2de01704496 100644 --- a/gemfiles/ruby_3.0_rails71.gemfile.lock +++ b/gemfiles/ruby_3.0_rails71.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -143,8 +143,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -335,7 +335,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_redis_3.gemfile b/gemfiles/ruby_3.0_redis_3.gemfile index c5bb7c836d7..e4f0fe63f57 100644 --- a/gemfiles/ruby_3.0_redis_3.gemfile +++ b/gemfiles/ruby_3.0_redis_3.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_redis_3.gemfile.lock b/gemfiles/ruby_3.0_redis_3.gemfile.lock index 6faae9f4aca..434dd961abb 100644 --- a/gemfiles/ruby_3.0_redis_3.gemfile.lock +++ b/gemfiles/ruby_3.0_redis_3.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -51,8 +51,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -82,21 +82,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -164,7 +164,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 3) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_redis_4.gemfile b/gemfiles/ruby_3.0_redis_4.gemfile index f0bc5d792f3..e3b935cb5b6 100644 --- a/gemfiles/ruby_3.0_redis_4.gemfile +++ b/gemfiles/ruby_3.0_redis_4.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_redis_4.gemfile.lock b/gemfiles/ruby_3.0_redis_4.gemfile.lock index 4e30377023c..6bfa9171216 100644 --- a/gemfiles/ruby_3.0_redis_4.gemfile.lock +++ b/gemfiles/ruby_3.0_redis_4.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -51,8 +51,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -82,21 +82,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -164,7 +164,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 4) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_redis_5.gemfile b/gemfiles/ruby_3.0_redis_5.gemfile index a90c77ea82c..003d7d7f42a 100644 --- a/gemfiles/ruby_3.0_redis_5.gemfile +++ b/gemfiles/ruby_3.0_redis_5.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_redis_5.gemfile.lock b/gemfiles/ruby_3.0_redis_5.gemfile.lock index a030d3c4487..e206b54b59d 100644 --- a/gemfiles/ruby_3.0_redis_5.gemfile.lock +++ b/gemfiles/ruby_3.0_redis_5.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -52,8 +52,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -86,21 +86,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -168,7 +168,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 5) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_relational_db.gemfile b/gemfiles/ruby_3.0_relational_db.gemfile index b85769ff1a9..d94c0d745f9 100644 --- a/gemfiles/ruby_3.0_relational_db.gemfile +++ b/gemfiles/ruby_3.0_relational_db.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_relational_db.gemfile.lock b/gemfiles/ruby_3.0_relational_db.gemfile.lock index 661cad6865c..3b07a812671 100644 --- a/gemfiles/ruby_3.0_relational_db.gemfile.lock +++ b/gemfiles/ruby_3.0_relational_db.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -69,8 +69,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -106,21 +106,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -200,7 +200,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_resque2_redis3.gemfile b/gemfiles/ruby_3.0_resque2_redis3.gemfile index 3ae64ec88ba..c706c151c1b 100644 --- a/gemfiles/ruby_3.0_resque2_redis3.gemfile +++ b/gemfiles/ruby_3.0_resque2_redis3.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_resque2_redis3.gemfile.lock b/gemfiles/ruby_3.0_resque2_redis3.gemfile.lock index 5436d382f0f..42b6f48c35f 100644 --- a/gemfiles/ruby_3.0_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_3.0_resque2_redis3.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -51,8 +51,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -96,21 +96,21 @@ GEM sinatra (>= 0.9.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -186,7 +186,7 @@ DEPENDENCIES redis (< 4.0) resque (>= 2.0) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_resque2_redis4.gemfile b/gemfiles/ruby_3.0_resque2_redis4.gemfile index 83e651e36e7..ff35c677a4e 100644 --- a/gemfiles/ruby_3.0_resque2_redis4.gemfile +++ b/gemfiles/ruby_3.0_resque2_redis4.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_resque2_redis4.gemfile.lock b/gemfiles/ruby_3.0_resque2_redis4.gemfile.lock index 8cab156bb2c..e3be828584d 100644 --- a/gemfiles/ruby_3.0_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_3.0_resque2_redis4.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -52,8 +52,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -100,21 +100,21 @@ GEM sinatra (>= 0.9.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -190,7 +190,7 @@ DEPENDENCIES redis (>= 4.0) resque (>= 2.0) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_sinatra_2.gemfile b/gemfiles/ruby_3.0_sinatra_2.gemfile index b8f6ec816fd..4271c435def 100644 --- a/gemfiles/ruby_3.0_sinatra_2.gemfile +++ b/gemfiles/ruby_3.0_sinatra_2.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_sinatra_2.gemfile.lock b/gemfiles/ruby_3.0_sinatra_2.gemfile.lock index 4fa9dc2c17f..8463b94a4bb 100644 --- a/gemfiles/ruby_3.0_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_3.0_sinatra_2.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -54,8 +54,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -186,7 +186,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_sinatra_3.gemfile b/gemfiles/ruby_3.0_sinatra_3.gemfile index 0bd409cbeb4..89a08dea6c0 100644 --- a/gemfiles/ruby_3.0_sinatra_3.gemfile +++ b/gemfiles/ruby_3.0_sinatra_3.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_sinatra_3.gemfile.lock b/gemfiles/ruby_3.0_sinatra_3.gemfile.lock index 57ad93f97d7..589ef82eb3b 100644 --- a/gemfiles/ruby_3.0_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_3.0_sinatra_3.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -55,8 +55,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -188,7 +188,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_sinatra_4.gemfile b/gemfiles/ruby_3.0_sinatra_4.gemfile index 043fe3166fe..487745e57c7 100644 --- a/gemfiles/ruby_3.0_sinatra_4.gemfile +++ b/gemfiles/ruby_3.0_sinatra_4.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_sinatra_4.gemfile.lock b/gemfiles/ruby_3.0_sinatra_4.gemfile.lock index 7d494bbe99b..521a5fec9fd 100644 --- a/gemfiles/ruby_3.0_sinatra_4.gemfile.lock +++ b/gemfiles/ruby_3.0_sinatra_4.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -55,8 +55,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -191,7 +191,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_stripe_10.gemfile b/gemfiles/ruby_3.0_stripe_10.gemfile index 67dae821fd9..096d0672b8f 100644 --- a/gemfiles/ruby_3.0_stripe_10.gemfile +++ b/gemfiles/ruby_3.0_stripe_10.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_stripe_10.gemfile.lock b/gemfiles/ruby_3.0_stripe_10.gemfile.lock index 208c1acbbf2..800fb1d0163 100644 --- a/gemfiles/ruby_3.0_stripe_10.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_10.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -54,8 +54,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -169,7 +169,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_stripe_11.gemfile b/gemfiles/ruby_3.0_stripe_11.gemfile index cfff965d3bb..892de59cf1b 100644 --- a/gemfiles/ruby_3.0_stripe_11.gemfile +++ b/gemfiles/ruby_3.0_stripe_11.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_stripe_11.gemfile.lock b/gemfiles/ruby_3.0_stripe_11.gemfile.lock index bdbc65a1549..1ec49f77f31 100644 --- a/gemfiles/ruby_3.0_stripe_11.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_11.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -54,8 +54,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -169,7 +169,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_stripe_12.gemfile b/gemfiles/ruby_3.0_stripe_12.gemfile index 4b3c344c0f8..68220d9367f 100644 --- a/gemfiles/ruby_3.0_stripe_12.gemfile +++ b/gemfiles/ruby_3.0_stripe_12.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_stripe_12.gemfile.lock b/gemfiles/ruby_3.0_stripe_12.gemfile.lock index 5f6dc4fad9b..a2557e8de1f 100644 --- a/gemfiles/ruby_3.0_stripe_12.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_12.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -54,8 +54,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -169,7 +169,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_stripe_7.gemfile b/gemfiles/ruby_3.0_stripe_7.gemfile index bf8b52917a3..cc94e9d46fa 100644 --- a/gemfiles/ruby_3.0_stripe_7.gemfile +++ b/gemfiles/ruby_3.0_stripe_7.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_stripe_7.gemfile.lock b/gemfiles/ruby_3.0_stripe_7.gemfile.lock index f6021c9beae..97d4df185b7 100644 --- a/gemfiles/ruby_3.0_stripe_7.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_7.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -54,8 +54,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -169,7 +169,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_stripe_8.gemfile b/gemfiles/ruby_3.0_stripe_8.gemfile index 1bdb9fd9814..a57fb151cad 100644 --- a/gemfiles/ruby_3.0_stripe_8.gemfile +++ b/gemfiles/ruby_3.0_stripe_8.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_stripe_8.gemfile.lock b/gemfiles/ruby_3.0_stripe_8.gemfile.lock index 88a54bf9cf9..f26968c62d9 100644 --- a/gemfiles/ruby_3.0_stripe_8.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_8.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -54,8 +54,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -169,7 +169,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_stripe_9.gemfile b/gemfiles/ruby_3.0_stripe_9.gemfile index a9b5346defe..108ecd2f1cf 100644 --- a/gemfiles/ruby_3.0_stripe_9.gemfile +++ b/gemfiles/ruby_3.0_stripe_9.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_stripe_9.gemfile.lock b/gemfiles/ruby_3.0_stripe_9.gemfile.lock index 589d57c0e54..1ca78a50d9c 100644 --- a/gemfiles/ruby_3.0_stripe_9.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_9.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -54,8 +54,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -169,7 +169,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_stripe_latest.gemfile b/gemfiles/ruby_3.0_stripe_latest.gemfile index 4939ddd9168..81d4d8a5e54 100644 --- a/gemfiles/ruby_3.0_stripe_latest.gemfile +++ b/gemfiles/ruby_3.0_stripe_latest.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_stripe_latest.gemfile.lock b/gemfiles/ruby_3.0_stripe_latest.gemfile.lock index 42613b52b16..0d0729faa58 100644 --- a/gemfiles/ruby_3.0_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_latest.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -54,8 +54,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -133,7 +133,7 @@ GEM simplecov (~> 0.19) simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) - stripe (13.0.2) + stripe (13.1.0) thor (1.3.2) unicode-display_width (2.6.0) warning (1.4.0) @@ -167,7 +167,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.0_stripe_min.gemfile b/gemfiles/ruby_3.0_stripe_min.gemfile index 2c6a3d47b17..ba5434bde4d 100644 --- a/gemfiles/ruby_3.0_stripe_min.gemfile +++ b/gemfiles/ruby_3.0_stripe_min.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.0_stripe_min.gemfile.lock b/gemfiles/ruby_3.0_stripe_min.gemfile.lock index 0f4ab68eabf..a753da400e2 100644 --- a/gemfiles/ruby_3.0_stripe_min.gemfile.lock +++ b/gemfiles/ruby_3.0_stripe_min.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -54,8 +54,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -167,7 +167,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_activesupport.gemfile b/gemfiles/ruby_3.1_activesupport.gemfile index ad753ca193c..c66f3272290 100644 --- a/gemfiles/ruby_3.1_activesupport.gemfile +++ b/gemfiles/ruby_3.1_activesupport.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_activesupport.gemfile.lock b/gemfiles/ruby_3.1_activesupport.gemfile.lock index e8b37a4a5a0..8cc44b5f586 100644 --- a/gemfiles/ruby_3.1_activesupport.gemfile.lock +++ b/gemfiles/ruby_3.1_activesupport.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -108,8 +108,8 @@ GEM addressable (>= 2.4) jsonapi-renderer (0.2.2) king_konf (1.0.1) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -186,21 +186,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -280,7 +280,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_aws.gemfile b/gemfiles/ruby_3.1_aws.gemfile index 08a4b53cca3..141dd4945d4 100644 --- a/gemfiles/ruby_3.1_aws.gemfile +++ b/gemfiles/ruby_3.1_aws.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_aws.gemfile.lock b/gemfiles/ruby_3.1_aws.gemfile.lock index 821ecddaa09..b72e1996a02 100644 --- a/gemfiles/ruby_3.1_aws.gemfile.lock +++ b/gemfiles/ruby_3.1_aws.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -1473,8 +1473,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -1505,21 +1505,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -1591,7 +1591,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_contrib.gemfile b/gemfiles/ruby_3.1_contrib.gemfile index 0d57f781afa..14f9732f151 100644 --- a/gemfiles/ruby_3.1_contrib.gemfile +++ b/gemfiles/ruby_3.1_contrib.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 12.3" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_contrib.gemfile.lock b/gemfiles/ruby_3.1_contrib.gemfile.lock index ca9b0417d7e..c38514a74ba 100644 --- a/gemfiles/ruby_3.1_contrib.gemfile.lock +++ b/gemfiles/ruby_3.1_contrib.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -66,8 +66,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -121,21 +121,21 @@ GEM strscan (>= 3.0.9) roda (3.65.0) rack - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -238,7 +238,7 @@ DEPENDENCIES resque rexml (>= 3.2.7) roda (>= 2.0.0) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_contrib_old.gemfile b/gemfiles/ruby_3.1_contrib_old.gemfile index 2f753d3ec21..c281b2784fd 100644 --- a/gemfiles/ruby_3.1_contrib_old.gemfile +++ b/gemfiles/ruby_3.1_contrib_old.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_contrib_old.gemfile.lock b/gemfiles/ruby_3.1_contrib_old.gemfile.lock index 26318e633f9..bce59cf81da 100644 --- a/gemfiles/ruby_3.1_contrib_old.gemfile.lock +++ b/gemfiles/ruby_3.1_contrib_old.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -62,8 +62,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -117,21 +117,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -218,7 +218,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_core_old.gemfile b/gemfiles/ruby_3.1_core_old.gemfile index 01f6865e03b..92a913e9a5f 100644 --- a/gemfiles/ruby_3.1_core_old.gemfile +++ b/gemfiles/ruby_3.1_core_old.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_core_old.gemfile.lock b/gemfiles/ruby_3.1_core_old.gemfile.lock index c14de47bb82..3860b230364 100644 --- a/gemfiles/ruby_3.1_core_old.gemfile.lock +++ b/gemfiles/ruby_3.1_core_old.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -51,8 +51,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -81,21 +81,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -162,7 +162,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_elasticsearch_7.gemfile b/gemfiles/ruby_3.1_elasticsearch_7.gemfile index 4b83240d43d..7b522e07485 100644 --- a/gemfiles/ruby_3.1_elasticsearch_7.gemfile +++ b/gemfiles/ruby_3.1_elasticsearch_7.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_elasticsearch_7.gemfile.lock b/gemfiles/ruby_3.1_elasticsearch_7.gemfile.lock index 280b70d0bd6..649a93c04f3 100644 --- a/gemfiles/ruby_3.1_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_3.1_elasticsearch_7.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -65,11 +65,11 @@ 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 (2.7.5) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -105,21 +105,21 @@ GEM regexp_parser (2.8.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -188,7 +188,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_elasticsearch_8.gemfile b/gemfiles/ruby_3.1_elasticsearch_8.gemfile index cda6467b661..86364bc6bfb 100644 --- a/gemfiles/ruby_3.1_elasticsearch_8.gemfile +++ b/gemfiles/ruby_3.1_elasticsearch_8.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_elasticsearch_8.gemfile.lock b/gemfiles/ruby_3.1_elasticsearch_8.gemfile.lock index 0542f43d0e9..1300d1fc917 100644 --- a/gemfiles/ruby_3.1_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_3.1_elasticsearch_8.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -63,11 +63,11 @@ 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 (2.7.5) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -103,21 +103,21 @@ GEM regexp_parser (2.8.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -186,7 +186,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_elasticsearch_latest.gemfile b/gemfiles/ruby_3.1_elasticsearch_latest.gemfile index 62a64ac5335..4c2fc508d18 100644 --- a/gemfiles/ruby_3.1_elasticsearch_latest.gemfile +++ b/gemfiles/ruby_3.1_elasticsearch_latest.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_3.1_elasticsearch_latest.gemfile.lock index d65c1f4f06c..8f50c5d3102 100644 --- a/gemfiles/ruby_3.1_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.1_elasticsearch_latest.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -65,11 +65,11 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.7.4) + json (2.7.5) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -186,7 +186,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_graphql_1.13.gemfile b/gemfiles/ruby_3.1_graphql_1.13.gemfile index b54ffe6e5ea..51e0e7b961d 100644 --- a/gemfiles/ruby_3.1_graphql_1.13.gemfile +++ b/gemfiles/ruby_3.1_graphql_1.13.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_graphql_1.13.gemfile.lock b/gemfiles/ruby_3.1_graphql_1.13.gemfile.lock index 14a0efe796c..95faa7bd8e6 100644 --- a/gemfiles/ruby_3.1_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_3.1_graphql_1.13.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -121,8 +121,8 @@ GEM json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -217,21 +217,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -316,7 +316,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_graphql_2.0.gemfile b/gemfiles/ruby_3.1_graphql_2.0.gemfile index 495f9d14955..823f7542312 100644 --- a/gemfiles/ruby_3.1_graphql_2.0.gemfile +++ b/gemfiles/ruby_3.1_graphql_2.0.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_graphql_2.0.gemfile.lock b/gemfiles/ruby_3.1_graphql_2.0.gemfile.lock index 73b248efef7..8ee0c7132ee 100644 --- a/gemfiles/ruby_3.1_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_3.1_graphql_2.0.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -121,8 +121,8 @@ GEM json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -217,21 +217,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -316,7 +316,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_graphql_2.1.gemfile b/gemfiles/ruby_3.1_graphql_2.1.gemfile index cb18c1c3254..35f6c7207a9 100644 --- a/gemfiles/ruby_3.1_graphql_2.1.gemfile +++ b/gemfiles/ruby_3.1_graphql_2.1.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_graphql_2.1.gemfile.lock b/gemfiles/ruby_3.1_graphql_2.1.gemfile.lock index f40a3ac723f..2ecb4c9830e 100644 --- a/gemfiles/ruby_3.1_graphql_2.1.gemfile.lock +++ b/gemfiles/ruby_3.1_graphql_2.1.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -122,8 +122,8 @@ GEM json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -218,21 +218,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -317,7 +317,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_graphql_2.2.gemfile b/gemfiles/ruby_3.1_graphql_2.2.gemfile index af077d7589c..1b43195b410 100644 --- a/gemfiles/ruby_3.1_graphql_2.2.gemfile +++ b/gemfiles/ruby_3.1_graphql_2.2.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_graphql_2.2.gemfile.lock b/gemfiles/ruby_3.1_graphql_2.2.gemfile.lock index 9ecebd98645..6f6f3b9ed0f 100644 --- a/gemfiles/ruby_3.1_graphql_2.2.gemfile.lock +++ b/gemfiles/ruby_3.1_graphql_2.2.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -122,8 +122,8 @@ GEM json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -218,21 +218,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -317,7 +317,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_graphql_2.3.gemfile b/gemfiles/ruby_3.1_graphql_2.3.gemfile index 1dfff1f0739..d2e58af0344 100644 --- a/gemfiles/ruby_3.1_graphql_2.3.gemfile +++ b/gemfiles/ruby_3.1_graphql_2.3.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_graphql_2.3.gemfile.lock b/gemfiles/ruby_3.1_graphql_2.3.gemfile.lock index 13c6803e3a3..d8f9221f961 100644 --- a/gemfiles/ruby_3.1_graphql_2.3.gemfile.lock +++ b/gemfiles/ruby_3.1_graphql_2.3.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -124,8 +124,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -319,7 +319,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_http.gemfile b/gemfiles/ruby_3.1_http.gemfile index c87c6a2a894..7c65171f882 100644 --- a/gemfiles/ruby_3.1_http.gemfile +++ b/gemfiles/ruby_3.1_http.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_http.gemfile.lock b/gemfiles/ruby_3.1_http.gemfile.lock index bb2cb2ff26c..be591905ad2 100644 --- a/gemfiles/ruby_3.1_http.gemfile.lock +++ b/gemfiles/ruby_3.1_http.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -73,8 +73,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -117,21 +117,21 @@ GEM netrc (~> 0.8) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -210,7 +210,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) rest-client rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_opensearch_2.gemfile b/gemfiles/ruby_3.1_opensearch_2.gemfile index 9739b756d81..942a6317e60 100644 --- a/gemfiles/ruby_3.1_opensearch_2.gemfile +++ b/gemfiles/ruby_3.1_opensearch_2.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_opensearch_2.gemfile.lock b/gemfiles/ruby_3.1_opensearch_2.gemfile.lock index 4d75ccca9bb..d767692b552 100644 --- a/gemfiles/ruby_3.1_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_3.1_opensearch_2.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -55,11 +55,11 @@ 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 (2.7.5) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -103,21 +103,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -186,7 +186,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_opensearch_3.gemfile b/gemfiles/ruby_3.1_opensearch_3.gemfile index 2667385fb26..af8a063286a 100644 --- a/gemfiles/ruby_3.1_opensearch_3.gemfile +++ b/gemfiles/ruby_3.1_opensearch_3.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_opensearch_3.gemfile.lock b/gemfiles/ruby_3.1_opensearch_3.gemfile.lock index 75502884620..bfe94524ea4 100644 --- a/gemfiles/ruby_3.1_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_3.1_opensearch_3.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -55,11 +55,11 @@ 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 (2.7.5) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -98,21 +98,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -181,7 +181,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_opensearch_latest.gemfile b/gemfiles/ruby_3.1_opensearch_latest.gemfile index f6a4a79a50a..d288085baab 100644 --- a/gemfiles/ruby_3.1_opensearch_latest.gemfile +++ b/gemfiles/ruby_3.1_opensearch_latest.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_opensearch_latest.gemfile.lock b/gemfiles/ruby_3.1_opensearch_latest.gemfile.lock index 1bc99cb6105..f79366d20e7 100644 --- a/gemfiles/ruby_3.1_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.1_opensearch_latest.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -57,11 +57,11 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.7.4) + json (2.7.5) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -181,7 +181,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_opentelemetry.gemfile b/gemfiles/ruby_3.1_opentelemetry.gemfile index 2a72364a885..29ccc01c677 100644 --- a/gemfiles/ruby_3.1_opentelemetry.gemfile +++ b/gemfiles/ruby_3.1_opentelemetry.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_opentelemetry.gemfile.lock b/gemfiles/ruby_3.1_opentelemetry.gemfile.lock index 5136428e30e..762664f4646 100644 --- a/gemfiles/ruby_3.1_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_3.1_opentelemetry.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -53,9 +53,9 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-darwin) @@ -98,21 +98,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -181,7 +181,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_opentelemetry_otlp.gemfile b/gemfiles/ruby_3.1_opentelemetry_otlp.gemfile index e3a336f0ad2..ff36c718bf3 100644 --- a/gemfiles/ruby_3.1_opentelemetry_otlp.gemfile +++ b/gemfiles/ruby_3.1_opentelemetry_otlp.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_3.1_opentelemetry_otlp.gemfile.lock index a3db2468fe5..fb8e3e39b27 100644 --- a/gemfiles/ruby_3.1_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_3.1_opentelemetry_otlp.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -56,8 +56,8 @@ GEM json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -189,7 +189,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_rack_1.gemfile b/gemfiles/ruby_3.1_rack_1.gemfile index d56ea818c17..69978ac3c78 100644 --- a/gemfiles/ruby_3.1_rack_1.gemfile +++ b/gemfiles/ruby_3.1_rack_1.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_rack_1.gemfile.lock b/gemfiles/ruby_3.1_rack_1.gemfile.lock index a91469c88e9..1a1adde5b2c 100644 --- a/gemfiles/ruby_3.1_rack_1.gemfile.lock +++ b/gemfiles/ruby_3.1_rack_1.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -51,8 +51,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -88,21 +88,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -172,7 +172,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_rack_2.gemfile b/gemfiles/ruby_3.1_rack_2.gemfile index 42acfe1a08e..ef520c3e299 100644 --- a/gemfiles/ruby_3.1_rack_2.gemfile +++ b/gemfiles/ruby_3.1_rack_2.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_rack_2.gemfile.lock b/gemfiles/ruby_3.1_rack_2.gemfile.lock index 9afe8a8ed37..7770459214e 100644 --- a/gemfiles/ruby_3.1_rack_2.gemfile.lock +++ b/gemfiles/ruby_3.1_rack_2.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -51,8 +51,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -88,21 +88,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -172,7 +172,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_rack_3.gemfile b/gemfiles/ruby_3.1_rack_3.gemfile index cd189b68684..b85f711288c 100644 --- a/gemfiles/ruby_3.1_rack_3.gemfile +++ b/gemfiles/ruby_3.1_rack_3.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_rack_3.gemfile.lock b/gemfiles/ruby_3.1_rack_3.gemfile.lock index 0ae6f9f7ed9..311a62747ef 100644 --- a/gemfiles/ruby_3.1_rack_3.gemfile.lock +++ b/gemfiles/ruby_3.1_rack_3.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -51,8 +51,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -88,21 +88,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -172,7 +172,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_rack_latest.gemfile b/gemfiles/ruby_3.1_rack_latest.gemfile index dcc5c722ac0..ea470ee9850 100644 --- a/gemfiles/ruby_3.1_rack_latest.gemfile +++ b/gemfiles/ruby_3.1_rack_latest.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_rack_latest.gemfile.lock b/gemfiles/ruby_3.1_rack_latest.gemfile.lock index fa607ca17a1..41e77d60889 100644 --- a/gemfiles/ruby_3.1_rack_latest.gemfile.lock +++ b/gemfiles/ruby_3.1_rack_latest.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -54,8 +54,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -174,7 +174,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_rails61_mysql2.gemfile b/gemfiles/ruby_3.1_rails61_mysql2.gemfile index bc9cd65d0cb..1f8975c3cf7 100644 --- a/gemfiles/ruby_3.1_rails61_mysql2.gemfile +++ b/gemfiles/ruby_3.1_rails61_mysql2.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_rails61_mysql2.gemfile.lock b/gemfiles/ruby_3.1_rails61_mysql2.gemfile.lock index 9acbd0b1c1a..98d50f81087 100644 --- a/gemfiles/ruby_3.1_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_3.1_rails61_mysql2.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -118,8 +118,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -211,21 +211,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -310,7 +310,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_rails61_postgres.gemfile b/gemfiles/ruby_3.1_rails61_postgres.gemfile index 86c369ceb8e..76cfde9b59f 100644 --- a/gemfiles/ruby_3.1_rails61_postgres.gemfile +++ b/gemfiles/ruby_3.1_rails61_postgres.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_rails61_postgres.gemfile.lock b/gemfiles/ruby_3.1_rails61_postgres.gemfile.lock index bba73d1bb07..801a4c86f33 100644 --- a/gemfiles/ruby_3.1_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_3.1_rails61_postgres.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -118,8 +118,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -211,21 +211,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -310,7 +310,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_rails61_postgres_redis.gemfile b/gemfiles/ruby_3.1_rails61_postgres_redis.gemfile index 4b231e63314..5971fb2833f 100644 --- a/gemfiles/ruby_3.1_rails61_postgres_redis.gemfile +++ b/gemfiles/ruby_3.1_rails61_postgres_redis.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_3.1_rails61_postgres_redis.gemfile.lock index 407e95b295e..46b0fb6dd04 100644 --- a/gemfiles/ruby_3.1_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_3.1_rails61_postgres_redis.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -118,8 +118,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -212,21 +212,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -312,7 +312,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 4) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile b/gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile index 9bad3ac655b..911c472e64f 100644 --- a/gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile.lock index 5c96fdbe69b..d2124c706bf 100644 --- a/gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_3.1_rails61_postgres_sidekiq.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -119,8 +119,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -218,21 +218,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -325,7 +325,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_rails61_semantic_logger.gemfile b/gemfiles/ruby_3.1_rails61_semantic_logger.gemfile index 94354201a7d..c09904ebd34 100644 --- a/gemfiles/ruby_3.1_rails61_semantic_logger.gemfile +++ b/gemfiles/ruby_3.1_rails61_semantic_logger.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_3.1_rails61_semantic_logger.gemfile.lock index 9dd38129ec8..7033dbedd0d 100644 --- a/gemfiles/ruby_3.1_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_3.1_rails61_semantic_logger.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -118,8 +118,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -208,21 +208,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -309,7 +309,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_rails61_trilogy.gemfile b/gemfiles/ruby_3.1_rails61_trilogy.gemfile index 0b8b1f4b468..5f6873afce7 100644 --- a/gemfiles/ruby_3.1_rails61_trilogy.gemfile +++ b/gemfiles/ruby_3.1_rails61_trilogy.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_rails61_trilogy.gemfile.lock b/gemfiles/ruby_3.1_rails61_trilogy.gemfile.lock index a23c8425e42..fb5d3ac8379 100644 --- a/gemfiles/ruby_3.1_rails61_trilogy.gemfile.lock +++ b/gemfiles/ruby_3.1_rails61_trilogy.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -122,8 +122,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -218,21 +218,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -318,7 +318,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_rails7.gemfile b/gemfiles/ruby_3.1_rails7.gemfile index 6d74fd2b67f..cc49a50fbf2 100644 --- a/gemfiles/ruby_3.1_rails7.gemfile +++ b/gemfiles/ruby_3.1_rails7.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_rails7.gemfile.lock b/gemfiles/ruby_3.1_rails7.gemfile.lock index ecb3f64d667..e6e1e667a02 100644 --- a/gemfiles/ruby_3.1_rails7.gemfile.lock +++ b/gemfiles/ruby_3.1_rails7.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -127,8 +127,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -305,7 +305,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_rails71.gemfile b/gemfiles/ruby_3.1_rails71.gemfile index 8e458e2c987..db7b37889a8 100644 --- a/gemfiles/ruby_3.1_rails71.gemfile +++ b/gemfiles/ruby_3.1_rails71.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_rails71.gemfile.lock b/gemfiles/ruby_3.1_rails71.gemfile.lock index f42cd4cc61d..2de01704496 100644 --- a/gemfiles/ruby_3.1_rails71.gemfile.lock +++ b/gemfiles/ruby_3.1_rails71.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -143,8 +143,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -335,7 +335,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_redis_3.gemfile b/gemfiles/ruby_3.1_redis_3.gemfile index c5bb7c836d7..e4f0fe63f57 100644 --- a/gemfiles/ruby_3.1_redis_3.gemfile +++ b/gemfiles/ruby_3.1_redis_3.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_redis_3.gemfile.lock b/gemfiles/ruby_3.1_redis_3.gemfile.lock index 6faae9f4aca..434dd961abb 100644 --- a/gemfiles/ruby_3.1_redis_3.gemfile.lock +++ b/gemfiles/ruby_3.1_redis_3.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -51,8 +51,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -82,21 +82,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -164,7 +164,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 3) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_redis_4.gemfile b/gemfiles/ruby_3.1_redis_4.gemfile index f0bc5d792f3..e3b935cb5b6 100644 --- a/gemfiles/ruby_3.1_redis_4.gemfile +++ b/gemfiles/ruby_3.1_redis_4.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_redis_4.gemfile.lock b/gemfiles/ruby_3.1_redis_4.gemfile.lock index 4e30377023c..6bfa9171216 100644 --- a/gemfiles/ruby_3.1_redis_4.gemfile.lock +++ b/gemfiles/ruby_3.1_redis_4.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -51,8 +51,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -82,21 +82,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -164,7 +164,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 4) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_redis_5.gemfile b/gemfiles/ruby_3.1_redis_5.gemfile index a90c77ea82c..003d7d7f42a 100644 --- a/gemfiles/ruby_3.1_redis_5.gemfile +++ b/gemfiles/ruby_3.1_redis_5.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_redis_5.gemfile.lock b/gemfiles/ruby_3.1_redis_5.gemfile.lock index a030d3c4487..e206b54b59d 100644 --- a/gemfiles/ruby_3.1_redis_5.gemfile.lock +++ b/gemfiles/ruby_3.1_redis_5.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -52,8 +52,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -86,21 +86,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -168,7 +168,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 5) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_relational_db.gemfile b/gemfiles/ruby_3.1_relational_db.gemfile index b85769ff1a9..d94c0d745f9 100644 --- a/gemfiles/ruby_3.1_relational_db.gemfile +++ b/gemfiles/ruby_3.1_relational_db.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_relational_db.gemfile.lock b/gemfiles/ruby_3.1_relational_db.gemfile.lock index 661cad6865c..3b07a812671 100644 --- a/gemfiles/ruby_3.1_relational_db.gemfile.lock +++ b/gemfiles/ruby_3.1_relational_db.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -69,8 +69,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -106,21 +106,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -200,7 +200,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_resque2_redis3.gemfile b/gemfiles/ruby_3.1_resque2_redis3.gemfile index 3ae64ec88ba..c706c151c1b 100644 --- a/gemfiles/ruby_3.1_resque2_redis3.gemfile +++ b/gemfiles/ruby_3.1_resque2_redis3.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_resque2_redis3.gemfile.lock b/gemfiles/ruby_3.1_resque2_redis3.gemfile.lock index 5436d382f0f..42b6f48c35f 100644 --- a/gemfiles/ruby_3.1_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_3.1_resque2_redis3.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -51,8 +51,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -96,21 +96,21 @@ GEM sinatra (>= 0.9.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -186,7 +186,7 @@ DEPENDENCIES redis (< 4.0) resque (>= 2.0) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_resque2_redis4.gemfile b/gemfiles/ruby_3.1_resque2_redis4.gemfile index 83e651e36e7..ff35c677a4e 100644 --- a/gemfiles/ruby_3.1_resque2_redis4.gemfile +++ b/gemfiles/ruby_3.1_resque2_redis4.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_resque2_redis4.gemfile.lock b/gemfiles/ruby_3.1_resque2_redis4.gemfile.lock index 8cab156bb2c..e3be828584d 100644 --- a/gemfiles/ruby_3.1_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_3.1_resque2_redis4.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -52,8 +52,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -100,21 +100,21 @@ GEM sinatra (>= 0.9.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -190,7 +190,7 @@ DEPENDENCIES redis (>= 4.0) resque (>= 2.0) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_sinatra_2.gemfile b/gemfiles/ruby_3.1_sinatra_2.gemfile index b8f6ec816fd..4271c435def 100644 --- a/gemfiles/ruby_3.1_sinatra_2.gemfile +++ b/gemfiles/ruby_3.1_sinatra_2.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_sinatra_2.gemfile.lock b/gemfiles/ruby_3.1_sinatra_2.gemfile.lock index 4fa9dc2c17f..8463b94a4bb 100644 --- a/gemfiles/ruby_3.1_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_3.1_sinatra_2.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -54,8 +54,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -186,7 +186,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_sinatra_3.gemfile b/gemfiles/ruby_3.1_sinatra_3.gemfile index 0bd409cbeb4..89a08dea6c0 100644 --- a/gemfiles/ruby_3.1_sinatra_3.gemfile +++ b/gemfiles/ruby_3.1_sinatra_3.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_sinatra_3.gemfile.lock b/gemfiles/ruby_3.1_sinatra_3.gemfile.lock index 57ad93f97d7..589ef82eb3b 100644 --- a/gemfiles/ruby_3.1_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_3.1_sinatra_3.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -55,8 +55,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -188,7 +188,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_sinatra_4.gemfile b/gemfiles/ruby_3.1_sinatra_4.gemfile index 043fe3166fe..487745e57c7 100644 --- a/gemfiles/ruby_3.1_sinatra_4.gemfile +++ b/gemfiles/ruby_3.1_sinatra_4.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_sinatra_4.gemfile.lock b/gemfiles/ruby_3.1_sinatra_4.gemfile.lock index 7d494bbe99b..521a5fec9fd 100644 --- a/gemfiles/ruby_3.1_sinatra_4.gemfile.lock +++ b/gemfiles/ruby_3.1_sinatra_4.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -55,8 +55,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -191,7 +191,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_stripe_10.gemfile b/gemfiles/ruby_3.1_stripe_10.gemfile index 67dae821fd9..096d0672b8f 100644 --- a/gemfiles/ruby_3.1_stripe_10.gemfile +++ b/gemfiles/ruby_3.1_stripe_10.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_stripe_10.gemfile.lock b/gemfiles/ruby_3.1_stripe_10.gemfile.lock index 208c1acbbf2..800fb1d0163 100644 --- a/gemfiles/ruby_3.1_stripe_10.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_10.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -54,8 +54,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -169,7 +169,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_stripe_11.gemfile b/gemfiles/ruby_3.1_stripe_11.gemfile index cfff965d3bb..892de59cf1b 100644 --- a/gemfiles/ruby_3.1_stripe_11.gemfile +++ b/gemfiles/ruby_3.1_stripe_11.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_stripe_11.gemfile.lock b/gemfiles/ruby_3.1_stripe_11.gemfile.lock index bdbc65a1549..1ec49f77f31 100644 --- a/gemfiles/ruby_3.1_stripe_11.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_11.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -54,8 +54,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -169,7 +169,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_stripe_12.gemfile b/gemfiles/ruby_3.1_stripe_12.gemfile index 4b3c344c0f8..68220d9367f 100644 --- a/gemfiles/ruby_3.1_stripe_12.gemfile +++ b/gemfiles/ruby_3.1_stripe_12.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_stripe_12.gemfile.lock b/gemfiles/ruby_3.1_stripe_12.gemfile.lock index 5f6dc4fad9b..a2557e8de1f 100644 --- a/gemfiles/ruby_3.1_stripe_12.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_12.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -54,8 +54,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -169,7 +169,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_stripe_7.gemfile b/gemfiles/ruby_3.1_stripe_7.gemfile index bf8b52917a3..cc94e9d46fa 100644 --- a/gemfiles/ruby_3.1_stripe_7.gemfile +++ b/gemfiles/ruby_3.1_stripe_7.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_stripe_7.gemfile.lock b/gemfiles/ruby_3.1_stripe_7.gemfile.lock index f6021c9beae..97d4df185b7 100644 --- a/gemfiles/ruby_3.1_stripe_7.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_7.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -54,8 +54,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -169,7 +169,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_stripe_8.gemfile b/gemfiles/ruby_3.1_stripe_8.gemfile index 1bdb9fd9814..a57fb151cad 100644 --- a/gemfiles/ruby_3.1_stripe_8.gemfile +++ b/gemfiles/ruby_3.1_stripe_8.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_stripe_8.gemfile.lock b/gemfiles/ruby_3.1_stripe_8.gemfile.lock index 88a54bf9cf9..f26968c62d9 100644 --- a/gemfiles/ruby_3.1_stripe_8.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_8.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -54,8 +54,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -169,7 +169,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_stripe_9.gemfile b/gemfiles/ruby_3.1_stripe_9.gemfile index a9b5346defe..108ecd2f1cf 100644 --- a/gemfiles/ruby_3.1_stripe_9.gemfile +++ b/gemfiles/ruby_3.1_stripe_9.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_stripe_9.gemfile.lock b/gemfiles/ruby_3.1_stripe_9.gemfile.lock index 589d57c0e54..1ca78a50d9c 100644 --- a/gemfiles/ruby_3.1_stripe_9.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_9.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -54,8 +54,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -169,7 +169,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_stripe_latest.gemfile b/gemfiles/ruby_3.1_stripe_latest.gemfile index 4939ddd9168..81d4d8a5e54 100644 --- a/gemfiles/ruby_3.1_stripe_latest.gemfile +++ b/gemfiles/ruby_3.1_stripe_latest.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_stripe_latest.gemfile.lock b/gemfiles/ruby_3.1_stripe_latest.gemfile.lock index 42613b52b16..0d0729faa58 100644 --- a/gemfiles/ruby_3.1_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_latest.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -54,8 +54,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -133,7 +133,7 @@ GEM simplecov (~> 0.19) simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) - stripe (13.0.2) + stripe (13.1.0) thor (1.3.2) unicode-display_width (2.6.0) warning (1.4.0) @@ -167,7 +167,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.1_stripe_min.gemfile b/gemfiles/ruby_3.1_stripe_min.gemfile index 2c6a3d47b17..ba5434bde4d 100644 --- a/gemfiles/ruby_3.1_stripe_min.gemfile +++ b/gemfiles/ruby_3.1_stripe_min.gemfile @@ -17,7 +17,7 @@ gem "pry-byebug" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.1_stripe_min.gemfile.lock b/gemfiles/ruby_3.1_stripe_min.gemfile.lock index 0f4ab68eabf..a753da400e2 100644 --- a/gemfiles/ruby_3.1_stripe_min.gemfile.lock +++ b/gemfiles/ruby_3.1_stripe_min.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -54,8 +54,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -167,7 +167,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_activesupport.gemfile b/gemfiles/ruby_3.2_activesupport.gemfile index 8de858f43a2..1df11a42e3b 100644 --- a/gemfiles/ruby_3.2_activesupport.gemfile +++ b/gemfiles/ruby_3.2_activesupport.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_activesupport.gemfile.lock b/gemfiles/ruby_3.2_activesupport.gemfile.lock index c718925fc12..f884fd05ca7 100644 --- a/gemfiles/ruby_3.2_activesupport.gemfile.lock +++ b/gemfiles/ruby_3.2_activesupport.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -107,8 +107,8 @@ GEM addressable (>= 2.4) jsonapi-renderer (0.2.2) king_konf (1.0.1) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -182,21 +182,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -275,7 +275,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_aws.gemfile b/gemfiles/ruby_3.2_aws.gemfile index 4381de35358..0c8d0ed587f 100644 --- a/gemfiles/ruby_3.2_aws.gemfile +++ b/gemfiles/ruby_3.2_aws.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_aws.gemfile.lock b/gemfiles/ruby_3.2_aws.gemfile.lock index 0e1c8c38f63..015f8a634df 100644 --- a/gemfiles/ruby_3.2_aws.gemfile.lock +++ b/gemfiles/ruby_3.2_aws.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -1472,8 +1472,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -1501,21 +1501,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -1586,7 +1586,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_contrib.gemfile b/gemfiles/ruby_3.2_contrib.gemfile index e0dc8534eb4..99c062e1811 100644 --- a/gemfiles/ruby_3.2_contrib.gemfile +++ b/gemfiles/ruby_3.2_contrib.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 12.3" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_contrib.gemfile.lock b/gemfiles/ruby_3.2_contrib.gemfile.lock index 69dec3c76fb..92a6f98e47a 100644 --- a/gemfiles/ruby_3.2_contrib.gemfile.lock +++ b/gemfiles/ruby_3.2_contrib.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -65,8 +65,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -117,21 +117,21 @@ GEM strscan (>= 3.0.9) roda (3.65.0) rack - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -233,7 +233,7 @@ DEPENDENCIES resque rexml (>= 3.2.7) roda (>= 2.0.0) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_contrib_old.gemfile b/gemfiles/ruby_3.2_contrib_old.gemfile index 0a5507335ca..e11249d7966 100644 --- a/gemfiles/ruby_3.2_contrib_old.gemfile +++ b/gemfiles/ruby_3.2_contrib_old.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_contrib_old.gemfile.lock b/gemfiles/ruby_3.2_contrib_old.gemfile.lock index 077ef75663e..e9b20d3c1b6 100644 --- a/gemfiles/ruby_3.2_contrib_old.gemfile.lock +++ b/gemfiles/ruby_3.2_contrib_old.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -61,8 +61,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -113,21 +113,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -213,7 +213,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_core_old.gemfile b/gemfiles/ruby_3.2_core_old.gemfile index d7b773d365d..69ab8b9c364 100644 --- a/gemfiles/ruby_3.2_core_old.gemfile +++ b/gemfiles/ruby_3.2_core_old.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_core_old.gemfile.lock b/gemfiles/ruby_3.2_core_old.gemfile.lock index 6bb26a0d4bf..1061cc5a112 100644 --- a/gemfiles/ruby_3.2_core_old.gemfile.lock +++ b/gemfiles/ruby_3.2_core_old.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -50,8 +50,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -77,21 +77,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -157,7 +157,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_elasticsearch_7.gemfile b/gemfiles/ruby_3.2_elasticsearch_7.gemfile index 0b69fee6a14..cc638fa3bdf 100644 --- a/gemfiles/ruby_3.2_elasticsearch_7.gemfile +++ b/gemfiles/ruby_3.2_elasticsearch_7.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_elasticsearch_7.gemfile.lock b/gemfiles/ruby_3.2_elasticsearch_7.gemfile.lock index bed802a9451..ee6d46de377 100644 --- a/gemfiles/ruby_3.2_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_3.2_elasticsearch_7.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -64,11 +64,11 @@ 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 (2.7.5) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -101,21 +101,21 @@ GEM regexp_parser (2.8.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -183,7 +183,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_elasticsearch_8.gemfile b/gemfiles/ruby_3.2_elasticsearch_8.gemfile index 145cd806d7e..9aa922ac4eb 100644 --- a/gemfiles/ruby_3.2_elasticsearch_8.gemfile +++ b/gemfiles/ruby_3.2_elasticsearch_8.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_elasticsearch_8.gemfile.lock b/gemfiles/ruby_3.2_elasticsearch_8.gemfile.lock index 3d3243bd5c8..74ec88c4ef5 100644 --- a/gemfiles/ruby_3.2_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_3.2_elasticsearch_8.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -62,11 +62,11 @@ 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 (2.7.5) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -99,21 +99,21 @@ GEM regexp_parser (2.8.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -181,7 +181,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_elasticsearch_latest.gemfile b/gemfiles/ruby_3.2_elasticsearch_latest.gemfile index a828fd4a6f7..dfceebfe612 100644 --- a/gemfiles/ruby_3.2_elasticsearch_latest.gemfile +++ b/gemfiles/ruby_3.2_elasticsearch_latest.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_3.2_elasticsearch_latest.gemfile.lock index 7727bbea854..b919c6a5151 100644 --- a/gemfiles/ruby_3.2_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.2_elasticsearch_latest.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -64,11 +64,11 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.7.4) + json (2.7.5) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -181,7 +181,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_graphql_1.13.gemfile b/gemfiles/ruby_3.2_graphql_1.13.gemfile index 70834bb9442..fc1be26cae5 100644 --- a/gemfiles/ruby_3.2_graphql_1.13.gemfile +++ b/gemfiles/ruby_3.2_graphql_1.13.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_graphql_1.13.gemfile.lock b/gemfiles/ruby_3.2_graphql_1.13.gemfile.lock index 4d87a5da88c..b371f8975f0 100644 --- a/gemfiles/ruby_3.2_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_3.2_graphql_1.13.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -119,8 +119,8 @@ GEM json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -212,21 +212,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -309,7 +309,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_graphql_2.0.gemfile b/gemfiles/ruby_3.2_graphql_2.0.gemfile index be3f11fc16a..9568403d526 100644 --- a/gemfiles/ruby_3.2_graphql_2.0.gemfile +++ b/gemfiles/ruby_3.2_graphql_2.0.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_graphql_2.0.gemfile.lock b/gemfiles/ruby_3.2_graphql_2.0.gemfile.lock index 57f00574770..d64eb4f95da 100644 --- a/gemfiles/ruby_3.2_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_3.2_graphql_2.0.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -119,8 +119,8 @@ GEM json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -212,21 +212,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -309,7 +309,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_graphql_2.1.gemfile b/gemfiles/ruby_3.2_graphql_2.1.gemfile index fd234b8dd05..4a8e185819d 100644 --- a/gemfiles/ruby_3.2_graphql_2.1.gemfile +++ b/gemfiles/ruby_3.2_graphql_2.1.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_graphql_2.1.gemfile.lock b/gemfiles/ruby_3.2_graphql_2.1.gemfile.lock index 3083e1f7acb..87716ce76fa 100644 --- a/gemfiles/ruby_3.2_graphql_2.1.gemfile.lock +++ b/gemfiles/ruby_3.2_graphql_2.1.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -120,8 +120,8 @@ GEM json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -213,21 +213,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -310,7 +310,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_graphql_2.2.gemfile b/gemfiles/ruby_3.2_graphql_2.2.gemfile index c51f0271f08..f3c7cfaf38d 100644 --- a/gemfiles/ruby_3.2_graphql_2.2.gemfile +++ b/gemfiles/ruby_3.2_graphql_2.2.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_graphql_2.2.gemfile.lock b/gemfiles/ruby_3.2_graphql_2.2.gemfile.lock index b2cbec8e65c..db93fbb6bda 100644 --- a/gemfiles/ruby_3.2_graphql_2.2.gemfile.lock +++ b/gemfiles/ruby_3.2_graphql_2.2.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -120,8 +120,8 @@ GEM json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -213,21 +213,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -310,7 +310,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_graphql_2.3.gemfile b/gemfiles/ruby_3.2_graphql_2.3.gemfile index a41051005f2..957d6b9d4de 100644 --- a/gemfiles/ruby_3.2_graphql_2.3.gemfile +++ b/gemfiles/ruby_3.2_graphql_2.3.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_graphql_2.3.gemfile.lock b/gemfiles/ruby_3.2_graphql_2.3.gemfile.lock index a801d750469..31447c16771 100644 --- a/gemfiles/ruby_3.2_graphql_2.3.gemfile.lock +++ b/gemfiles/ruby_3.2_graphql_2.3.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -123,8 +123,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -314,7 +314,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_http.gemfile b/gemfiles/ruby_3.2_http.gemfile index 0e0503cb90f..7dc04c92f9b 100644 --- a/gemfiles/ruby_3.2_http.gemfile +++ b/gemfiles/ruby_3.2_http.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_http.gemfile.lock b/gemfiles/ruby_3.2_http.gemfile.lock index e03e0b216ef..e8be594414c 100644 --- a/gemfiles/ruby_3.2_http.gemfile.lock +++ b/gemfiles/ruby_3.2_http.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -72,8 +72,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -113,21 +113,21 @@ GEM netrc (~> 0.8) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -205,7 +205,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) rest-client rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_opensearch_2.gemfile b/gemfiles/ruby_3.2_opensearch_2.gemfile index 1ddb1abca41..ad0b149218a 100644 --- a/gemfiles/ruby_3.2_opensearch_2.gemfile +++ b/gemfiles/ruby_3.2_opensearch_2.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_opensearch_2.gemfile.lock b/gemfiles/ruby_3.2_opensearch_2.gemfile.lock index 51ef15101de..a96ba008b35 100644 --- a/gemfiles/ruby_3.2_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_3.2_opensearch_2.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -54,11 +54,11 @@ 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 (2.7.5) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -99,21 +99,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -181,7 +181,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_opensearch_3.gemfile b/gemfiles/ruby_3.2_opensearch_3.gemfile index 1620625a1fe..67a5656f1d1 100644 --- a/gemfiles/ruby_3.2_opensearch_3.gemfile +++ b/gemfiles/ruby_3.2_opensearch_3.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_opensearch_3.gemfile.lock b/gemfiles/ruby_3.2_opensearch_3.gemfile.lock index 0a928f2fff8..34fda4fe71c 100644 --- a/gemfiles/ruby_3.2_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_3.2_opensearch_3.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -54,11 +54,11 @@ 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 (2.7.5) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -94,21 +94,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -176,7 +176,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_opensearch_latest.gemfile b/gemfiles/ruby_3.2_opensearch_latest.gemfile index aa9a7905992..777fd431713 100644 --- a/gemfiles/ruby_3.2_opensearch_latest.gemfile +++ b/gemfiles/ruby_3.2_opensearch_latest.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_opensearch_latest.gemfile.lock b/gemfiles/ruby_3.2_opensearch_latest.gemfile.lock index 6f734aa5b50..f567342c6f5 100644 --- a/gemfiles/ruby_3.2_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.2_opensearch_latest.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -56,11 +56,11 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.7.4) + json (2.7.5) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -176,7 +176,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_opentelemetry.gemfile b/gemfiles/ruby_3.2_opentelemetry.gemfile index 882b5534f2f..e9d8aac4e67 100644 --- a/gemfiles/ruby_3.2_opentelemetry.gemfile +++ b/gemfiles/ruby_3.2_opentelemetry.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_opentelemetry.gemfile.lock b/gemfiles/ruby_3.2_opentelemetry.gemfile.lock index 5a1d4064c61..8134ac383af 100644 --- a/gemfiles/ruby_3.2_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_3.2_opentelemetry.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -50,8 +50,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -89,21 +89,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -170,7 +170,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_opentelemetry_otlp.gemfile b/gemfiles/ruby_3.2_opentelemetry_otlp.gemfile index dc1e1a628d2..9aefa5f9a19 100644 --- a/gemfiles/ruby_3.2_opentelemetry_otlp.gemfile +++ b/gemfiles/ruby_3.2_opentelemetry_otlp.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_3.2_opentelemetry_otlp.gemfile.lock index fbaeb4a2465..a56b1cf269c 100644 --- a/gemfiles/ruby_3.2_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_3.2_opentelemetry_otlp.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -55,8 +55,8 @@ GEM json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -184,7 +184,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_rack_1.gemfile b/gemfiles/ruby_3.2_rack_1.gemfile index 3f4dcb2e812..8630fdcce1d 100644 --- a/gemfiles/ruby_3.2_rack_1.gemfile +++ b/gemfiles/ruby_3.2_rack_1.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_rack_1.gemfile.lock b/gemfiles/ruby_3.2_rack_1.gemfile.lock index ae0bbabac50..ab61885af9c 100644 --- a/gemfiles/ruby_3.2_rack_1.gemfile.lock +++ b/gemfiles/ruby_3.2_rack_1.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -50,8 +50,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -84,21 +84,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -167,7 +167,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_rack_2.gemfile b/gemfiles/ruby_3.2_rack_2.gemfile index 9c6e1202600..4c7b10d4b54 100644 --- a/gemfiles/ruby_3.2_rack_2.gemfile +++ b/gemfiles/ruby_3.2_rack_2.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_rack_2.gemfile.lock b/gemfiles/ruby_3.2_rack_2.gemfile.lock index e4f39019191..a91651bbaf2 100644 --- a/gemfiles/ruby_3.2_rack_2.gemfile.lock +++ b/gemfiles/ruby_3.2_rack_2.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -50,8 +50,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -84,21 +84,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -167,7 +167,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_rack_3.gemfile b/gemfiles/ruby_3.2_rack_3.gemfile index 8e935538d96..72ab6dbd5af 100644 --- a/gemfiles/ruby_3.2_rack_3.gemfile +++ b/gemfiles/ruby_3.2_rack_3.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_rack_3.gemfile.lock b/gemfiles/ruby_3.2_rack_3.gemfile.lock index 270d6bd5a0b..fe023891e4e 100644 --- a/gemfiles/ruby_3.2_rack_3.gemfile.lock +++ b/gemfiles/ruby_3.2_rack_3.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -50,8 +50,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -84,21 +84,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -167,7 +167,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_rack_latest.gemfile b/gemfiles/ruby_3.2_rack_latest.gemfile index 98c3bee7b5c..6348f13b42e 100644 --- a/gemfiles/ruby_3.2_rack_latest.gemfile +++ b/gemfiles/ruby_3.2_rack_latest.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_rack_latest.gemfile.lock b/gemfiles/ruby_3.2_rack_latest.gemfile.lock index 5d675c4f6ae..b57bb340009 100644 --- a/gemfiles/ruby_3.2_rack_latest.gemfile.lock +++ b/gemfiles/ruby_3.2_rack_latest.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -53,8 +53,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -169,7 +169,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_rails61_mysql2.gemfile b/gemfiles/ruby_3.2_rails61_mysql2.gemfile index b3d6f50f232..02b3f0dd108 100644 --- a/gemfiles/ruby_3.2_rails61_mysql2.gemfile +++ b/gemfiles/ruby_3.2_rails61_mysql2.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_rails61_mysql2.gemfile.lock b/gemfiles/ruby_3.2_rails61_mysql2.gemfile.lock index 51c73394892..4c388daae84 100644 --- a/gemfiles/ruby_3.2_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_3.2_rails61_mysql2.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -117,8 +117,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -207,21 +207,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -305,7 +305,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_rails61_postgres.gemfile b/gemfiles/ruby_3.2_rails61_postgres.gemfile index 52c56a81911..241807f21ea 100644 --- a/gemfiles/ruby_3.2_rails61_postgres.gemfile +++ b/gemfiles/ruby_3.2_rails61_postgres.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_rails61_postgres.gemfile.lock b/gemfiles/ruby_3.2_rails61_postgres.gemfile.lock index 6de0166bab1..ee37a7e19cd 100644 --- a/gemfiles/ruby_3.2_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_3.2_rails61_postgres.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -117,8 +117,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -207,21 +207,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -305,7 +305,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_rails61_postgres_redis.gemfile b/gemfiles/ruby_3.2_rails61_postgres_redis.gemfile index 62e57d1655f..665365d839f 100644 --- a/gemfiles/ruby_3.2_rails61_postgres_redis.gemfile +++ b/gemfiles/ruby_3.2_rails61_postgres_redis.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_3.2_rails61_postgres_redis.gemfile.lock index 9737e77c6c8..6528134b202 100644 --- a/gemfiles/ruby_3.2_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_3.2_rails61_postgres_redis.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -117,8 +117,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -208,21 +208,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -307,7 +307,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 4) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile b/gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile index 8c76214aceb..7743153be9f 100644 --- a/gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile.lock index f8cfea0453b..7de4f7aa693 100644 --- a/gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_3.2_rails61_postgres_sidekiq.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -118,8 +118,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -214,21 +214,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -320,7 +320,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_rails61_semantic_logger.gemfile b/gemfiles/ruby_3.2_rails61_semantic_logger.gemfile index 2391b1824bd..42fc0d8e52b 100644 --- a/gemfiles/ruby_3.2_rails61_semantic_logger.gemfile +++ b/gemfiles/ruby_3.2_rails61_semantic_logger.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_3.2_rails61_semantic_logger.gemfile.lock index 91d51b6b320..ec8edb91e7c 100644 --- a/gemfiles/ruby_3.2_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_3.2_rails61_semantic_logger.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -117,8 +117,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -204,21 +204,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -304,7 +304,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_rails61_trilogy.gemfile b/gemfiles/ruby_3.2_rails61_trilogy.gemfile index 7babf75a747..497948fac3c 100644 --- a/gemfiles/ruby_3.2_rails61_trilogy.gemfile +++ b/gemfiles/ruby_3.2_rails61_trilogy.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_rails61_trilogy.gemfile.lock b/gemfiles/ruby_3.2_rails61_trilogy.gemfile.lock index 26e9e225949..182447f965f 100644 --- a/gemfiles/ruby_3.2_rails61_trilogy.gemfile.lock +++ b/gemfiles/ruby_3.2_rails61_trilogy.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -121,8 +121,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -214,21 +214,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -313,7 +313,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_rails7.gemfile b/gemfiles/ruby_3.2_rails7.gemfile index 1d7bf20234e..f1868a2214f 100644 --- a/gemfiles/ruby_3.2_rails7.gemfile +++ b/gemfiles/ruby_3.2_rails7.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_rails7.gemfile.lock b/gemfiles/ruby_3.2_rails7.gemfile.lock index 8da33c2c19a..553c646a3f5 100644 --- a/gemfiles/ruby_3.2_rails7.gemfile.lock +++ b/gemfiles/ruby_3.2_rails7.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -126,8 +126,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -300,7 +300,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_rails71.gemfile b/gemfiles/ruby_3.2_rails71.gemfile index ef669fc2d04..062c05e0795 100644 --- a/gemfiles/ruby_3.2_rails71.gemfile +++ b/gemfiles/ruby_3.2_rails71.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_rails71.gemfile.lock b/gemfiles/ruby_3.2_rails71.gemfile.lock index ceea60d5fd5..02f2ddc3c45 100644 --- a/gemfiles/ruby_3.2_rails71.gemfile.lock +++ b/gemfiles/ruby_3.2_rails71.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -142,8 +142,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -330,7 +330,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_redis_3.gemfile b/gemfiles/ruby_3.2_redis_3.gemfile index d7dd94b9dc2..987e2c5ad8a 100644 --- a/gemfiles/ruby_3.2_redis_3.gemfile +++ b/gemfiles/ruby_3.2_redis_3.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_redis_3.gemfile.lock b/gemfiles/ruby_3.2_redis_3.gemfile.lock index ca34d1b5679..ae4e579cae5 100644 --- a/gemfiles/ruby_3.2_redis_3.gemfile.lock +++ b/gemfiles/ruby_3.2_redis_3.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -50,8 +50,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -78,21 +78,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -159,7 +159,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 3) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_redis_4.gemfile b/gemfiles/ruby_3.2_redis_4.gemfile index d1cfebb7540..ed348644830 100644 --- a/gemfiles/ruby_3.2_redis_4.gemfile +++ b/gemfiles/ruby_3.2_redis_4.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_redis_4.gemfile.lock b/gemfiles/ruby_3.2_redis_4.gemfile.lock index fab3caf9154..db565abd3d7 100644 --- a/gemfiles/ruby_3.2_redis_4.gemfile.lock +++ b/gemfiles/ruby_3.2_redis_4.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -50,8 +50,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -78,21 +78,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -159,7 +159,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 4) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_redis_5.gemfile b/gemfiles/ruby_3.2_redis_5.gemfile index 51fc2bd6fcb..4f0953253f4 100644 --- a/gemfiles/ruby_3.2_redis_5.gemfile +++ b/gemfiles/ruby_3.2_redis_5.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_redis_5.gemfile.lock b/gemfiles/ruby_3.2_redis_5.gemfile.lock index 36eb7512210..7675797ff74 100644 --- a/gemfiles/ruby_3.2_redis_5.gemfile.lock +++ b/gemfiles/ruby_3.2_redis_5.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -51,8 +51,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -82,21 +82,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -163,7 +163,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 5) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_relational_db.gemfile b/gemfiles/ruby_3.2_relational_db.gemfile index f6b2e9588fa..f26abd2725c 100644 --- a/gemfiles/ruby_3.2_relational_db.gemfile +++ b/gemfiles/ruby_3.2_relational_db.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_relational_db.gemfile.lock b/gemfiles/ruby_3.2_relational_db.gemfile.lock index 54ed853b762..93d394fc9be 100644 --- a/gemfiles/ruby_3.2_relational_db.gemfile.lock +++ b/gemfiles/ruby_3.2_relational_db.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -68,8 +68,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -102,21 +102,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -195,7 +195,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_resque2_redis3.gemfile b/gemfiles/ruby_3.2_resque2_redis3.gemfile index 640f8597e26..7c8daa332a5 100644 --- a/gemfiles/ruby_3.2_resque2_redis3.gemfile +++ b/gemfiles/ruby_3.2_resque2_redis3.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_resque2_redis3.gemfile.lock b/gemfiles/ruby_3.2_resque2_redis3.gemfile.lock index b99f9b41db4..cb58ba2a24e 100644 --- a/gemfiles/ruby_3.2_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_3.2_resque2_redis3.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -50,8 +50,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -92,21 +92,21 @@ GEM sinatra (>= 0.9.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -181,7 +181,7 @@ DEPENDENCIES redis (< 4.0) resque (>= 2.0) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_resque2_redis4.gemfile b/gemfiles/ruby_3.2_resque2_redis4.gemfile index 506386653cd..fae5853c72d 100644 --- a/gemfiles/ruby_3.2_resque2_redis4.gemfile +++ b/gemfiles/ruby_3.2_resque2_redis4.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_resque2_redis4.gemfile.lock b/gemfiles/ruby_3.2_resque2_redis4.gemfile.lock index 29cdc5adf2c..ba3fad36651 100644 --- a/gemfiles/ruby_3.2_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_3.2_resque2_redis4.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -51,8 +51,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -96,21 +96,21 @@ GEM sinatra (>= 0.9.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.1) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.2) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -185,7 +185,7 @@ DEPENDENCIES redis (>= 4.0) resque (>= 2.0) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_sinatra_2.gemfile b/gemfiles/ruby_3.2_sinatra_2.gemfile index 829793bf92f..7ad06f5d3cb 100644 --- a/gemfiles/ruby_3.2_sinatra_2.gemfile +++ b/gemfiles/ruby_3.2_sinatra_2.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_sinatra_2.gemfile.lock b/gemfiles/ruby_3.2_sinatra_2.gemfile.lock index cab01f0a15d..9f0995c795f 100644 --- a/gemfiles/ruby_3.2_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_3.2_sinatra_2.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -53,8 +53,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -181,7 +181,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_sinatra_3.gemfile b/gemfiles/ruby_3.2_sinatra_3.gemfile index b32d81abb42..d85e1bbb042 100644 --- a/gemfiles/ruby_3.2_sinatra_3.gemfile +++ b/gemfiles/ruby_3.2_sinatra_3.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_sinatra_3.gemfile.lock b/gemfiles/ruby_3.2_sinatra_3.gemfile.lock index 6bcb70bde8a..8b9b5af6978 100644 --- a/gemfiles/ruby_3.2_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_3.2_sinatra_3.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -54,8 +54,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -183,7 +183,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_sinatra_4.gemfile b/gemfiles/ruby_3.2_sinatra_4.gemfile index 4f2f198fcc7..d480f436817 100644 --- a/gemfiles/ruby_3.2_sinatra_4.gemfile +++ b/gemfiles/ruby_3.2_sinatra_4.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_sinatra_4.gemfile.lock b/gemfiles/ruby_3.2_sinatra_4.gemfile.lock index 5746924744b..f25c9f0dc50 100644 --- a/gemfiles/ruby_3.2_sinatra_4.gemfile.lock +++ b/gemfiles/ruby_3.2_sinatra_4.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -54,8 +54,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -186,7 +186,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_stripe_10.gemfile b/gemfiles/ruby_3.2_stripe_10.gemfile index 78c1b12b157..8cbdf34419c 100644 --- a/gemfiles/ruby_3.2_stripe_10.gemfile +++ b/gemfiles/ruby_3.2_stripe_10.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_stripe_10.gemfile.lock b/gemfiles/ruby_3.2_stripe_10.gemfile.lock index a17fe36f292..6411e7bf6c0 100644 --- a/gemfiles/ruby_3.2_stripe_10.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_10.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -53,8 +53,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -164,7 +164,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_stripe_11.gemfile b/gemfiles/ruby_3.2_stripe_11.gemfile index 97cc42bc32b..0210f5d0ad4 100644 --- a/gemfiles/ruby_3.2_stripe_11.gemfile +++ b/gemfiles/ruby_3.2_stripe_11.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_stripe_11.gemfile.lock b/gemfiles/ruby_3.2_stripe_11.gemfile.lock index ecd331cc6fa..6e524049b53 100644 --- a/gemfiles/ruby_3.2_stripe_11.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_11.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -53,8 +53,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -164,7 +164,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_stripe_12.gemfile b/gemfiles/ruby_3.2_stripe_12.gemfile index d32c0492d04..38f3510a912 100644 --- a/gemfiles/ruby_3.2_stripe_12.gemfile +++ b/gemfiles/ruby_3.2_stripe_12.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_stripe_12.gemfile.lock b/gemfiles/ruby_3.2_stripe_12.gemfile.lock index d9c7aee0a07..23931db9524 100644 --- a/gemfiles/ruby_3.2_stripe_12.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_12.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -53,8 +53,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -164,7 +164,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_stripe_7.gemfile b/gemfiles/ruby_3.2_stripe_7.gemfile index f6058cec9af..0541f5bfae5 100644 --- a/gemfiles/ruby_3.2_stripe_7.gemfile +++ b/gemfiles/ruby_3.2_stripe_7.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_stripe_7.gemfile.lock b/gemfiles/ruby_3.2_stripe_7.gemfile.lock index 14b1e946ce7..94013150e2d 100644 --- a/gemfiles/ruby_3.2_stripe_7.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_7.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -53,8 +53,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -164,7 +164,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_stripe_8.gemfile b/gemfiles/ruby_3.2_stripe_8.gemfile index 207e52f7ef0..9978c7f0474 100644 --- a/gemfiles/ruby_3.2_stripe_8.gemfile +++ b/gemfiles/ruby_3.2_stripe_8.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_stripe_8.gemfile.lock b/gemfiles/ruby_3.2_stripe_8.gemfile.lock index 9718daf1580..7724e3ef991 100644 --- a/gemfiles/ruby_3.2_stripe_8.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_8.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -53,8 +53,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -164,7 +164,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_stripe_9.gemfile b/gemfiles/ruby_3.2_stripe_9.gemfile index 694bb73a25f..d8f968d6e5a 100644 --- a/gemfiles/ruby_3.2_stripe_9.gemfile +++ b/gemfiles/ruby_3.2_stripe_9.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_stripe_9.gemfile.lock b/gemfiles/ruby_3.2_stripe_9.gemfile.lock index 85dc9a7aa2e..8aab8dad2f3 100644 --- a/gemfiles/ruby_3.2_stripe_9.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_9.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -53,8 +53,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -164,7 +164,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_stripe_latest.gemfile b/gemfiles/ruby_3.2_stripe_latest.gemfile index 75c1fc97991..2ddc72a903e 100644 --- a/gemfiles/ruby_3.2_stripe_latest.gemfile +++ b/gemfiles/ruby_3.2_stripe_latest.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_stripe_latest.gemfile.lock b/gemfiles/ruby_3.2_stripe_latest.gemfile.lock index 1b7259d9c5b..c6c68551ad7 100644 --- a/gemfiles/ruby_3.2_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_latest.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -53,8 +53,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -129,7 +129,7 @@ GEM simplecov (~> 0.19) simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) - stripe (13.0.2) + stripe (13.1.0) thor (1.3.2) unicode-display_width (2.6.0) warning (1.4.0) @@ -162,7 +162,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.2_stripe_min.gemfile b/gemfiles/ruby_3.2_stripe_min.gemfile index 001cec5c97f..c423a54874e 100644 --- a/gemfiles/ruby_3.2_stripe_min.gemfile +++ b/gemfiles/ruby_3.2_stripe_min.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.2_stripe_min.gemfile.lock b/gemfiles/ruby_3.2_stripe_min.gemfile.lock index 0e714879dd4..2dca2b2551a 100644 --- a/gemfiles/ruby_3.2_stripe_min.gemfile.lock +++ b/gemfiles/ruby_3.2_stripe_min.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -53,8 +53,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -162,7 +162,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_activesupport.gemfile b/gemfiles/ruby_3.3_activesupport.gemfile index 8de858f43a2..1df11a42e3b 100644 --- a/gemfiles/ruby_3.3_activesupport.gemfile +++ b/gemfiles/ruby_3.3_activesupport.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_activesupport.gemfile.lock b/gemfiles/ruby_3.3_activesupport.gemfile.lock index 33a3dce8036..8cb55ea3d3d 100644 --- a/gemfiles/ruby_3.3_activesupport.gemfile.lock +++ b/gemfiles/ruby_3.3_activesupport.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -33,9 +33,9 @@ GEM erubi (~> 1.4) rails-dom-testing (~> 2.0) rails-html-sanitizer (~> 1.1, >= 1.2.0) - active_model_serializers (0.10.13) - actionpack (>= 4.1, < 7.1) - activemodel (>= 4.1, < 7.1) + active_model_serializers (0.10.14) + actionpack (>= 4.1) + activemodel (>= 4.1) case_transform (>= 0.2) jsonapi-renderer (>= 0.1.1.beta1, < 0.3) activemodel (7.0.8) @@ -106,18 +106,18 @@ GEM addressable (>= 2.4) jsonapi-renderer (0.2.2) king_konf (1.0.1) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) ffi (~> 1.0) - lograge (0.13.0) + lograge (0.14.0) actionpack (>= 4) activesupport (>= 4) railties (>= 4) request_store (~> 1.0) - loofah (2.21.3) + loofah (2.23.1) crass (~> 1.0.2) nokogiri (>= 1.12.0) memory_profiler (0.9.14) @@ -129,8 +129,9 @@ GEM ruby2_keywords (~> 0.0.1) mustermann-grape (1.0.2) mustermann (>= 1.0.0) - nokogiri (1.15.4) - mini_portile2 (~> 2.8.2) + nokogiri (1.16.7-aarch64-linux) + racc (~> 1.4) + nokogiri (1.16.7-x86_64-linux) racc (~> 1.4) os (1.1.4) parallel (1.23.0) @@ -180,21 +181,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -273,7 +274,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_aws.gemfile b/gemfiles/ruby_3.3_aws.gemfile index 4381de35358..0c8d0ed587f 100644 --- a/gemfiles/ruby_3.3_aws.gemfile +++ b/gemfiles/ruby_3.3_aws.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_aws.gemfile.lock b/gemfiles/ruby_3.3_aws.gemfile.lock index 03179739a4a..7bcb3e8acc6 100644 --- a/gemfiles/ruby_3.3_aws.gemfile.lock +++ b/gemfiles/ruby_3.3_aws.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -1471,8 +1471,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -1500,21 +1500,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -1585,7 +1585,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_contrib.gemfile b/gemfiles/ruby_3.3_contrib.gemfile index e0dc8534eb4..99c062e1811 100644 --- a/gemfiles/ruby_3.3_contrib.gemfile +++ b/gemfiles/ruby_3.3_contrib.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 12.3" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_contrib.gemfile.lock b/gemfiles/ruby_3.3_contrib.gemfile.lock index cb3cbe22682..f14c0ae8b20 100644 --- a/gemfiles/ruby_3.3_contrib.gemfile.lock +++ b/gemfiles/ruby_3.3_contrib.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -51,18 +51,22 @@ GEM extlz4 (0.3.3) ffi (1.17.0-aarch64-linux-gnu) ffi (1.17.0-x86_64-linux-gnu) - google-protobuf (3.23.1) - googleapis-common-protos-types (1.6.0) - google-protobuf (~> 3.14) - grpc (1.54.2) - google-protobuf (~> 3.21) + google-protobuf (3.25.5-aarch64-linux) + google-protobuf (3.25.5-x86_64-linux) + googleapis-common-protos-types (1.16.0) + google-protobuf (>= 3.18, < 5.a) + grpc (1.67.0-aarch64-linux) + google-protobuf (>= 3.25, < 5.0) + googleapis-common-protos-types (~> 1.0) + grpc (1.67.0-x86_64-linux) + 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 (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -114,21 +118,21 @@ GEM strscan (>= 3.0.9) roda (3.68.0) rack - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.5) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -230,7 +234,7 @@ DEPENDENCIES resque rexml (>= 3.2.7) roda (>= 2.0.0) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_contrib_old.gemfile b/gemfiles/ruby_3.3_contrib_old.gemfile index 141c6e7cef6..501fb0b49e6 100644 --- a/gemfiles/ruby_3.3_contrib_old.gemfile +++ b/gemfiles/ruby_3.3_contrib_old.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_contrib_old.gemfile.lock b/gemfiles/ruby_3.3_contrib_old.gemfile.lock index 9403cae96c8..db962e62a69 100644 --- a/gemfiles/ruby_3.3_contrib_old.gemfile.lock +++ b/gemfiles/ruby_3.3_contrib_old.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -60,8 +60,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -113,21 +113,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.5) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -214,7 +214,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_core_old.gemfile b/gemfiles/ruby_3.3_core_old.gemfile index d7b773d365d..69ab8b9c364 100644 --- a/gemfiles/ruby_3.3_core_old.gemfile +++ b/gemfiles/ruby_3.3_core_old.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_core_old.gemfile.lock b/gemfiles/ruby_3.3_core_old.gemfile.lock index c97652a36b7..f2eeed4c07e 100644 --- a/gemfiles/ruby_3.3_core_old.gemfile.lock +++ b/gemfiles/ruby_3.3_core_old.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -49,8 +49,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -76,21 +76,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.5) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -156,7 +156,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_elasticsearch_7.gemfile b/gemfiles/ruby_3.3_elasticsearch_7.gemfile index 0b69fee6a14..cc638fa3bdf 100644 --- a/gemfiles/ruby_3.3_elasticsearch_7.gemfile +++ b/gemfiles/ruby_3.3_elasticsearch_7.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_elasticsearch_7.gemfile.lock b/gemfiles/ruby_3.3_elasticsearch_7.gemfile.lock index a911da5fb40..16a43174e62 100644 --- a/gemfiles/ruby_3.3_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_3.3_elasticsearch_7.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -63,11 +63,11 @@ GEM ffi (1.17.0-x86_64-linux-gnu) google-protobuf (3.24.4) hashdiff (1.0.1) - json (2.6.3) + json (2.7.5) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -100,21 +100,21 @@ GEM regexp_parser (2.8.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -182,7 +182,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_elasticsearch_8.gemfile b/gemfiles/ruby_3.3_elasticsearch_8.gemfile index 145cd806d7e..9aa922ac4eb 100644 --- a/gemfiles/ruby_3.3_elasticsearch_8.gemfile +++ b/gemfiles/ruby_3.3_elasticsearch_8.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_elasticsearch_8.gemfile.lock b/gemfiles/ruby_3.3_elasticsearch_8.gemfile.lock index 502a120af60..0502ed346db 100644 --- a/gemfiles/ruby_3.3_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_3.3_elasticsearch_8.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -61,11 +61,11 @@ GEM ffi (1.17.0-x86_64-linux-gnu) google-protobuf (3.24.4) hashdiff (1.0.1) - json (2.6.3) + json (2.7.5) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -98,21 +98,21 @@ GEM regexp_parser (2.8.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -180,7 +180,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_elasticsearch_latest.gemfile b/gemfiles/ruby_3.3_elasticsearch_latest.gemfile index a828fd4a6f7..dfceebfe612 100644 --- a/gemfiles/ruby_3.3_elasticsearch_latest.gemfile +++ b/gemfiles/ruby_3.3_elasticsearch_latest.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_3.3_elasticsearch_latest.gemfile.lock index 7727bbea854..b919c6a5151 100644 --- a/gemfiles/ruby_3.3_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.3_elasticsearch_latest.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -64,11 +64,11 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.7.4) + json (2.7.5) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -181,7 +181,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_graphql_1.13.gemfile b/gemfiles/ruby_3.3_graphql_1.13.gemfile index 70834bb9442..fc1be26cae5 100644 --- a/gemfiles/ruby_3.3_graphql_1.13.gemfile +++ b/gemfiles/ruby_3.3_graphql_1.13.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_graphql_1.13.gemfile.lock b/gemfiles/ruby_3.3_graphql_1.13.gemfile.lock index 0d493eb98da..3bdd66a8890 100644 --- a/gemfiles/ruby_3.3_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_3.3_graphql_1.13.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -119,8 +119,8 @@ GEM json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -212,21 +212,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -310,7 +310,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_graphql_2.0.gemfile b/gemfiles/ruby_3.3_graphql_2.0.gemfile index be3f11fc16a..9568403d526 100644 --- a/gemfiles/ruby_3.3_graphql_2.0.gemfile +++ b/gemfiles/ruby_3.3_graphql_2.0.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_graphql_2.0.gemfile.lock b/gemfiles/ruby_3.3_graphql_2.0.gemfile.lock index e002e743c78..00bd9ab84ce 100644 --- a/gemfiles/ruby_3.3_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_3.3_graphql_2.0.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -119,8 +119,8 @@ GEM json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -212,21 +212,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -310,7 +310,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_graphql_2.1.gemfile b/gemfiles/ruby_3.3_graphql_2.1.gemfile index fd234b8dd05..4a8e185819d 100644 --- a/gemfiles/ruby_3.3_graphql_2.1.gemfile +++ b/gemfiles/ruby_3.3_graphql_2.1.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_graphql_2.1.gemfile.lock b/gemfiles/ruby_3.3_graphql_2.1.gemfile.lock index 908879747ea..f5b592b6e4d 100644 --- a/gemfiles/ruby_3.3_graphql_2.1.gemfile.lock +++ b/gemfiles/ruby_3.3_graphql_2.1.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -120,8 +120,8 @@ GEM json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -213,21 +213,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -311,7 +311,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_graphql_2.2.gemfile b/gemfiles/ruby_3.3_graphql_2.2.gemfile index c51f0271f08..f3c7cfaf38d 100644 --- a/gemfiles/ruby_3.3_graphql_2.2.gemfile +++ b/gemfiles/ruby_3.3_graphql_2.2.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_graphql_2.2.gemfile.lock b/gemfiles/ruby_3.3_graphql_2.2.gemfile.lock index 1b8425ee2cc..a7acd0dc60f 100644 --- a/gemfiles/ruby_3.3_graphql_2.2.gemfile.lock +++ b/gemfiles/ruby_3.3_graphql_2.2.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -120,8 +120,8 @@ GEM json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -213,21 +213,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -311,7 +311,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_graphql_2.3.gemfile b/gemfiles/ruby_3.3_graphql_2.3.gemfile index a41051005f2..957d6b9d4de 100644 --- a/gemfiles/ruby_3.3_graphql_2.3.gemfile +++ b/gemfiles/ruby_3.3_graphql_2.3.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_graphql_2.3.gemfile.lock b/gemfiles/ruby_3.3_graphql_2.3.gemfile.lock index a801d750469..31447c16771 100644 --- a/gemfiles/ruby_3.3_graphql_2.3.gemfile.lock +++ b/gemfiles/ruby_3.3_graphql_2.3.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -123,8 +123,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -314,7 +314,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_http.gemfile b/gemfiles/ruby_3.3_http.gemfile index 0e0503cb90f..7dc04c92f9b 100644 --- a/gemfiles/ruby_3.3_http.gemfile +++ b/gemfiles/ruby_3.3_http.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_http.gemfile.lock b/gemfiles/ruby_3.3_http.gemfile.lock index 13832520362..7d45c80d09f 100644 --- a/gemfiles/ruby_3.3_http.gemfile.lock +++ b/gemfiles/ruby_3.3_http.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -71,8 +71,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -112,21 +112,21 @@ GEM netrc (~> 0.8) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -204,7 +204,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) rest-client rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_opensearch_2.gemfile b/gemfiles/ruby_3.3_opensearch_2.gemfile index 1ddb1abca41..ad0b149218a 100644 --- a/gemfiles/ruby_3.3_opensearch_2.gemfile +++ b/gemfiles/ruby_3.3_opensearch_2.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_opensearch_2.gemfile.lock b/gemfiles/ruby_3.3_opensearch_2.gemfile.lock index 4baf0d67fe7..56ac65b2e5b 100644 --- a/gemfiles/ruby_3.3_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_3.3_opensearch_2.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -53,11 +53,11 @@ GEM ffi (1.17.0-x86_64-linux-gnu) google-protobuf (3.24.4) hashdiff (1.0.1) - json (2.6.3) + json (2.7.5) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -98,21 +98,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -180,7 +180,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_opensearch_3.gemfile b/gemfiles/ruby_3.3_opensearch_3.gemfile index 1620625a1fe..67a5656f1d1 100644 --- a/gemfiles/ruby_3.3_opensearch_3.gemfile +++ b/gemfiles/ruby_3.3_opensearch_3.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_opensearch_3.gemfile.lock b/gemfiles/ruby_3.3_opensearch_3.gemfile.lock index bc8af0a6dfa..3bb6bf9896f 100644 --- a/gemfiles/ruby_3.3_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_3.3_opensearch_3.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -53,11 +53,11 @@ GEM ffi (1.17.0-x86_64-linux-gnu) google-protobuf (3.24.4) hashdiff (1.0.1) - json (2.6.3) + json (2.7.5) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -93,21 +93,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -175,7 +175,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_opensearch_latest.gemfile b/gemfiles/ruby_3.3_opensearch_latest.gemfile index aa9a7905992..777fd431713 100644 --- a/gemfiles/ruby_3.3_opensearch_latest.gemfile +++ b/gemfiles/ruby_3.3_opensearch_latest.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_opensearch_latest.gemfile.lock b/gemfiles/ruby_3.3_opensearch_latest.gemfile.lock index 6f734aa5b50..f567342c6f5 100644 --- a/gemfiles/ruby_3.3_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.3_opensearch_latest.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -56,11 +56,11 @@ GEM google-protobuf (3.25.4-aarch64-linux) google-protobuf (3.25.4-x86_64-linux) hashdiff (1.1.1) - json (2.7.4) + json (2.7.5) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -176,7 +176,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_opentelemetry.gemfile b/gemfiles/ruby_3.3_opentelemetry.gemfile index 882b5534f2f..e9d8aac4e67 100644 --- a/gemfiles/ruby_3.3_opentelemetry.gemfile +++ b/gemfiles/ruby_3.3_opentelemetry.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_opentelemetry.gemfile.lock b/gemfiles/ruby_3.3_opentelemetry.gemfile.lock index 3da5e64519a..8cbeb9f57dc 100644 --- a/gemfiles/ruby_3.3_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_3.3_opentelemetry.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -49,8 +49,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -88,21 +88,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.5) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -169,7 +169,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_opentelemetry_otlp.gemfile b/gemfiles/ruby_3.3_opentelemetry_otlp.gemfile index dc1e1a628d2..9aefa5f9a19 100644 --- a/gemfiles/ruby_3.3_opentelemetry_otlp.gemfile +++ b/gemfiles/ruby_3.3_opentelemetry_otlp.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_3.3_opentelemetry_otlp.gemfile.lock index fbaeb4a2465..a56b1cf269c 100644 --- a/gemfiles/ruby_3.3_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_3.3_opentelemetry_otlp.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -55,8 +55,8 @@ GEM json (2.7.1) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -184,7 +184,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_rack_2.gemfile b/gemfiles/ruby_3.3_rack_2.gemfile index 9c6e1202600..4c7b10d4b54 100644 --- a/gemfiles/ruby_3.3_rack_2.gemfile +++ b/gemfiles/ruby_3.3_rack_2.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_rack_2.gemfile.lock b/gemfiles/ruby_3.3_rack_2.gemfile.lock index 3d7bf0f0397..88038f2153a 100644 --- a/gemfiles/ruby_3.3_rack_2.gemfile.lock +++ b/gemfiles/ruby_3.3_rack_2.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -49,8 +49,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -83,21 +83,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -166,7 +166,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_rack_3.gemfile b/gemfiles/ruby_3.3_rack_3.gemfile index 8e935538d96..72ab6dbd5af 100644 --- a/gemfiles/ruby_3.3_rack_3.gemfile +++ b/gemfiles/ruby_3.3_rack_3.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_rack_3.gemfile.lock b/gemfiles/ruby_3.3_rack_3.gemfile.lock index f8d7f3288f0..d6fab8ed923 100644 --- a/gemfiles/ruby_3.3_rack_3.gemfile.lock +++ b/gemfiles/ruby_3.3_rack_3.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -49,8 +49,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -83,21 +83,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -166,7 +166,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_rack_latest.gemfile b/gemfiles/ruby_3.3_rack_latest.gemfile index 98c3bee7b5c..6348f13b42e 100644 --- a/gemfiles/ruby_3.3_rack_latest.gemfile +++ b/gemfiles/ruby_3.3_rack_latest.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_rack_latest.gemfile.lock b/gemfiles/ruby_3.3_rack_latest.gemfile.lock index 5d675c4f6ae..b57bb340009 100644 --- a/gemfiles/ruby_3.3_rack_latest.gemfile.lock +++ b/gemfiles/ruby_3.3_rack_latest.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -53,8 +53,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -169,7 +169,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_rails61_mysql2.gemfile b/gemfiles/ruby_3.3_rails61_mysql2.gemfile index b3d6f50f232..02b3f0dd108 100644 --- a/gemfiles/ruby_3.3_rails61_mysql2.gemfile +++ b/gemfiles/ruby_3.3_rails61_mysql2.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_rails61_mysql2.gemfile.lock b/gemfiles/ruby_3.3_rails61_mysql2.gemfile.lock index 327785be29d..528a074d6ef 100644 --- a/gemfiles/ruby_3.3_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_3.3_rails61_mysql2.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -116,18 +116,18 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) ffi (~> 1.0) - lograge (0.12.0) + lograge (0.14.0) actionpack (>= 4) activesupport (>= 4) railties (>= 4) request_store (~> 1.0) - loofah (2.21.3) + loofah (2.23.1) crass (~> 1.0.2) nokogiri (>= 1.12.0) mail (2.8.1) @@ -139,7 +139,6 @@ GEM memory_profiler (0.9.14) method_source (1.0.0) mini_mime (1.1.2) - mini_portile2 (2.8.2) minitest (5.18.0) msgpack (1.7.2) mysql2 (0.5.5) @@ -153,8 +152,9 @@ GEM net-smtp (0.3.3) net-protocol nio4r (2.5.9) - nokogiri (1.15.0) - mini_portile2 (~> 2.8.2) + nokogiri (1.16.7-aarch64-linux) + racc (~> 1.4) + nokogiri (1.16.7-x86_64-linux) racc (~> 1.4) os (1.1.4) parallel (1.23.0) @@ -186,11 +186,13 @@ GEM bundler (>= 1.15.0) railties (= 6.1.7.3) sprockets-rails (>= 2.0.0) - rails-dom-testing (2.0.3) - activesupport (>= 4.2.0) + rails-dom-testing (2.2.0) + activesupport (>= 5.0.0) + minitest nokogiri (>= 1.6) - rails-html-sanitizer (1.5.0) - loofah (~> 2.19, >= 2.19.1) + rails-html-sanitizer (1.6.0) + loofah (~> 2.21) + nokogiri (~> 1.14) railties (6.1.7.3) actionpack (= 6.1.7.3) activesupport (= 6.1.7.3) @@ -206,21 +208,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.5) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -304,7 +306,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_rails61_postgres.gemfile b/gemfiles/ruby_3.3_rails61_postgres.gemfile index 52c56a81911..241807f21ea 100644 --- a/gemfiles/ruby_3.3_rails61_postgres.gemfile +++ b/gemfiles/ruby_3.3_rails61_postgres.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_rails61_postgres.gemfile.lock b/gemfiles/ruby_3.3_rails61_postgres.gemfile.lock index 031b88f4c3d..d43dcf481d6 100644 --- a/gemfiles/ruby_3.3_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_3.3_rails61_postgres.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -116,18 +116,18 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) ffi (~> 1.0) - lograge (0.12.0) + lograge (0.14.0) actionpack (>= 4) activesupport (>= 4) railties (>= 4) request_store (~> 1.0) - loofah (2.21.3) + loofah (2.23.1) crass (~> 1.0.2) nokogiri (>= 1.12.0) mail (2.8.1) @@ -139,7 +139,6 @@ GEM memory_profiler (0.9.14) method_source (1.0.0) mini_mime (1.1.2) - mini_portile2 (2.8.2) minitest (5.18.0) msgpack (1.7.2) net-imap (0.3.4) @@ -152,8 +151,9 @@ GEM net-smtp (0.3.3) net-protocol nio4r (2.5.9) - nokogiri (1.15.0) - mini_portile2 (~> 2.8.2) + nokogiri (1.16.7-aarch64-linux) + racc (~> 1.4) + nokogiri (1.16.7-x86_64-linux) racc (~> 1.4) os (1.1.4) parallel (1.23.0) @@ -186,11 +186,13 @@ GEM bundler (>= 1.15.0) railties (= 6.1.7.3) sprockets-rails (>= 2.0.0) - rails-dom-testing (2.0.3) - activesupport (>= 4.2.0) + rails-dom-testing (2.2.0) + activesupport (>= 5.0.0) + minitest nokogiri (>= 1.6) - rails-html-sanitizer (1.5.0) - loofah (~> 2.19, >= 2.19.1) + rails-html-sanitizer (1.6.0) + loofah (~> 2.21) + nokogiri (~> 1.14) railties (6.1.7.3) actionpack (= 6.1.7.3) activesupport (= 6.1.7.3) @@ -206,21 +208,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.5) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -304,7 +306,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_rails61_postgres_redis.gemfile b/gemfiles/ruby_3.3_rails61_postgres_redis.gemfile index 62e57d1655f..665365d839f 100644 --- a/gemfiles/ruby_3.3_rails61_postgres_redis.gemfile +++ b/gemfiles/ruby_3.3_rails61_postgres_redis.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_rails61_postgres_redis.gemfile.lock b/gemfiles/ruby_3.3_rails61_postgres_redis.gemfile.lock index c38da905d8c..1db576ff03c 100644 --- a/gemfiles/ruby_3.3_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_3.3_rails61_postgres_redis.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -116,18 +116,18 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) ffi (~> 1.0) - lograge (0.12.0) + lograge (0.14.0) actionpack (>= 4) activesupport (>= 4) railties (>= 4) request_store (~> 1.0) - loofah (2.21.3) + loofah (2.23.1) crass (~> 1.0.2) nokogiri (>= 1.12.0) mail (2.8.1) @@ -139,7 +139,6 @@ GEM memory_profiler (0.9.14) method_source (1.0.0) mini_mime (1.1.2) - mini_portile2 (2.8.2) minitest (5.18.0) msgpack (1.7.2) net-imap (0.3.4) @@ -152,8 +151,9 @@ GEM net-smtp (0.3.3) net-protocol nio4r (2.5.9) - nokogiri (1.15.0) - mini_portile2 (~> 2.8.2) + nokogiri (1.16.7-aarch64-linux) + racc (~> 1.4) + nokogiri (1.16.7-x86_64-linux) racc (~> 1.4) os (1.1.4) parallel (1.23.0) @@ -186,11 +186,13 @@ GEM bundler (>= 1.15.0) railties (= 6.1.7.3) sprockets-rails (>= 2.0.0) - rails-dom-testing (2.0.3) - activesupport (>= 4.2.0) + rails-dom-testing (2.2.0) + activesupport (>= 5.0.0) + minitest nokogiri (>= 1.6) - rails-html-sanitizer (1.5.0) - loofah (~> 2.19, >= 2.19.1) + rails-html-sanitizer (1.6.0) + loofah (~> 2.21) + nokogiri (~> 1.14) railties (6.1.7.3) actionpack (= 6.1.7.3) activesupport (= 6.1.7.3) @@ -207,21 +209,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.5) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -306,7 +308,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 4) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile b/gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile index 8c76214aceb..7743153be9f 100644 --- a/gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile.lock b/gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile.lock index 31cf54d13cb..1fa9a0ca6c1 100644 --- a/gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_3.3_rails61_postgres_sidekiq.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -117,18 +117,18 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) ffi (~> 1.0) - lograge (0.12.0) + lograge (0.14.0) actionpack (>= 4) activesupport (>= 4) railties (>= 4) request_store (~> 1.0) - loofah (2.21.3) + loofah (2.23.1) crass (~> 1.0.2) nokogiri (>= 1.12.0) mail (2.8.1) @@ -140,7 +140,6 @@ GEM memory_profiler (0.9.14) method_source (1.0.0) mini_mime (1.1.2) - mini_portile2 (2.8.2) minitest (5.18.0) msgpack (1.7.2) net-imap (0.3.4) @@ -153,8 +152,9 @@ GEM net-smtp (0.3.3) net-protocol nio4r (2.5.9) - nokogiri (1.15.0) - mini_portile2 (~> 2.8.2) + nokogiri (1.16.7-aarch64-linux) + racc (~> 1.4) + nokogiri (1.16.7-x86_64-linux) racc (~> 1.4) os (1.1.4) parallel (1.23.0) @@ -187,11 +187,13 @@ GEM bundler (>= 1.15.0) railties (= 6.1.7.3) sprockets-rails (>= 2.0.0) - rails-dom-testing (2.0.3) - activesupport (>= 4.2.0) + rails-dom-testing (2.2.0) + activesupport (>= 5.0.0) + minitest nokogiri (>= 1.6) - rails-html-sanitizer (1.5.0) - loofah (~> 2.19, >= 2.19.1) + rails-html-sanitizer (1.6.0) + loofah (~> 2.21) + nokogiri (~> 1.14) rails_semantic_logger (4.12.0) rack railties (>= 5.1) @@ -213,21 +215,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.5) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -319,7 +321,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_rails61_semantic_logger.gemfile b/gemfiles/ruby_3.3_rails61_semantic_logger.gemfile index 2391b1824bd..42fc0d8e52b 100644 --- a/gemfiles/ruby_3.3_rails61_semantic_logger.gemfile +++ b/gemfiles/ruby_3.3_rails61_semantic_logger.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_rails61_semantic_logger.gemfile.lock b/gemfiles/ruby_3.3_rails61_semantic_logger.gemfile.lock index 5506a48da1d..84433f971b8 100644 --- a/gemfiles/ruby_3.3_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_3.3_rails61_semantic_logger.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -116,13 +116,13 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) ffi (~> 1.0) - loofah (2.21.3) + loofah (2.23.1) crass (~> 1.0.2) nokogiri (>= 1.12.0) mail (2.8.1) @@ -134,7 +134,6 @@ GEM memory_profiler (0.9.14) method_source (1.0.0) mini_mime (1.1.2) - mini_portile2 (2.8.2) minitest (5.18.0) msgpack (1.7.2) net-imap (0.3.4) @@ -147,8 +146,9 @@ GEM net-smtp (0.3.3) net-protocol nio4r (2.5.9) - nokogiri (1.15.0) - mini_portile2 (~> 2.8.2) + nokogiri (1.16.7-aarch64-linux) + racc (~> 1.4) + nokogiri (1.16.7-x86_64-linux) racc (~> 1.4) os (1.1.4) parallel (1.23.0) @@ -181,12 +181,14 @@ GEM bundler (>= 1.15.0) railties (= 6.1.7.3) sprockets-rails (>= 2.0.0) - rails-dom-testing (2.0.3) - activesupport (>= 4.2.0) + rails-dom-testing (2.2.0) + activesupport (>= 5.0.0) + minitest nokogiri (>= 1.6) - rails-html-sanitizer (1.5.0) - loofah (~> 2.19, >= 2.19.1) - rails_semantic_logger (4.12.0) + rails-html-sanitizer (1.6.0) + loofah (~> 2.21) + nokogiri (~> 1.14) + rails_semantic_logger (4.16.0) rack railties (>= 5.1) semantic_logger (~> 4.13) @@ -203,21 +205,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.5) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -303,7 +305,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_rails61_trilogy.gemfile b/gemfiles/ruby_3.3_rails61_trilogy.gemfile index 7babf75a747..497948fac3c 100644 --- a/gemfiles/ruby_3.3_rails61_trilogy.gemfile +++ b/gemfiles/ruby_3.3_rails61_trilogy.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_rails61_trilogy.gemfile.lock b/gemfiles/ruby_3.3_rails61_trilogy.gemfile.lock index 56432939c4a..b0626323d86 100644 --- a/gemfiles/ruby_3.3_rails61_trilogy.gemfile.lock +++ b/gemfiles/ruby_3.3_rails61_trilogy.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -120,8 +120,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -131,7 +131,7 @@ GEM activesupport (>= 4) railties (>= 4) request_store (~> 1.0) - loofah (2.22.0) + loofah (2.23.1) crass (~> 1.0.2) nokogiri (>= 1.12.0) mail (2.8.1) @@ -143,7 +143,6 @@ GEM memory_profiler (0.9.14) method_source (1.0.0) mini_mime (1.1.5) - mini_portile2 (2.8.5) minitest (5.20.0) msgpack (1.7.2) net-imap (0.4.5) @@ -156,8 +155,9 @@ GEM net-smtp (0.4.0) net-protocol nio4r (2.6.1) - nokogiri (1.15.5) - mini_portile2 (~> 2.8.2) + nokogiri (1.16.7-aarch64-linux) + racc (~> 1.4) + nokogiri (1.16.7-x86_64-linux) racc (~> 1.4) os (1.1.4) parallel (1.23.0) @@ -213,21 +213,21 @@ GEM rack (>= 1.4) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -312,7 +312,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_rails7.gemfile b/gemfiles/ruby_3.3_rails7.gemfile index 1d7bf20234e..f1868a2214f 100644 --- a/gemfiles/ruby_3.3_rails7.gemfile +++ b/gemfiles/ruby_3.3_rails7.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_rails7.gemfile.lock b/gemfiles/ruby_3.3_rails7.gemfile.lock index 8da33c2c19a..553c646a3f5 100644 --- a/gemfiles/ruby_3.3_rails7.gemfile.lock +++ b/gemfiles/ruby_3.3_rails7.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -126,8 +126,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -300,7 +300,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_rails71.gemfile b/gemfiles/ruby_3.3_rails71.gemfile index ef669fc2d04..062c05e0795 100644 --- a/gemfiles/ruby_3.3_rails71.gemfile +++ b/gemfiles/ruby_3.3_rails71.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_rails71.gemfile.lock b/gemfiles/ruby_3.3_rails71.gemfile.lock index ceea60d5fd5..02f2ddc3c45 100644 --- a/gemfiles/ruby_3.3_rails71.gemfile.lock +++ b/gemfiles/ruby_3.3_rails71.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -142,8 +142,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -330,7 +330,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_redis_3.gemfile b/gemfiles/ruby_3.3_redis_3.gemfile index d7dd94b9dc2..987e2c5ad8a 100644 --- a/gemfiles/ruby_3.3_redis_3.gemfile +++ b/gemfiles/ruby_3.3_redis_3.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_redis_3.gemfile.lock b/gemfiles/ruby_3.3_redis_3.gemfile.lock index 59e99c0f01c..333f8401712 100644 --- a/gemfiles/ruby_3.3_redis_3.gemfile.lock +++ b/gemfiles/ruby_3.3_redis_3.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -49,8 +49,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -77,21 +77,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.5) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -158,7 +158,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 3) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_redis_4.gemfile b/gemfiles/ruby_3.3_redis_4.gemfile index d1cfebb7540..ed348644830 100644 --- a/gemfiles/ruby_3.3_redis_4.gemfile +++ b/gemfiles/ruby_3.3_redis_4.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_redis_4.gemfile.lock b/gemfiles/ruby_3.3_redis_4.gemfile.lock index 8fe5a9a0e6d..8b27dd7ec68 100644 --- a/gemfiles/ruby_3.3_redis_4.gemfile.lock +++ b/gemfiles/ruby_3.3_redis_4.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -49,8 +49,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -77,21 +77,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.5) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -158,7 +158,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 4) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_redis_5.gemfile b/gemfiles/ruby_3.3_redis_5.gemfile index 51fc2bd6fcb..4f0953253f4 100644 --- a/gemfiles/ruby_3.3_redis_5.gemfile +++ b/gemfiles/ruby_3.3_redis_5.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_redis_5.gemfile.lock b/gemfiles/ruby_3.3_redis_5.gemfile.lock index 2d2683cb6b9..4e18692a79e 100644 --- a/gemfiles/ruby_3.3_redis_5.gemfile.lock +++ b/gemfiles/ruby_3.3_redis_5.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -50,8 +50,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -81,21 +81,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.5) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -162,7 +162,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 5) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_relational_db.gemfile b/gemfiles/ruby_3.3_relational_db.gemfile index f6b2e9588fa..f26abd2725c 100644 --- a/gemfiles/ruby_3.3_relational_db.gemfile +++ b/gemfiles/ruby_3.3_relational_db.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_relational_db.gemfile.lock b/gemfiles/ruby_3.3_relational_db.gemfile.lock index d29b824e9e9..e9fe00ccea7 100644 --- a/gemfiles/ruby_3.3_relational_db.gemfile.lock +++ b/gemfiles/ruby_3.3_relational_db.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -67,8 +67,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -102,21 +102,21 @@ GEM regexp_parser (2.8.1) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -195,7 +195,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_resque2_redis3.gemfile b/gemfiles/ruby_3.3_resque2_redis3.gemfile index 640f8597e26..7c8daa332a5 100644 --- a/gemfiles/ruby_3.3_resque2_redis3.gemfile +++ b/gemfiles/ruby_3.3_resque2_redis3.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_resque2_redis3.gemfile.lock b/gemfiles/ruby_3.3_resque2_redis3.gemfile.lock index ca9fb5e31a4..6d17c1a43b4 100644 --- a/gemfiles/ruby_3.3_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_3.3_resque2_redis3.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -49,8 +49,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -91,21 +91,21 @@ GEM sinatra (>= 0.9.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.5) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -180,7 +180,7 @@ DEPENDENCIES redis (< 4.0) resque (>= 2.0) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_resque2_redis4.gemfile b/gemfiles/ruby_3.3_resque2_redis4.gemfile index 506386653cd..fae5853c72d 100644 --- a/gemfiles/ruby_3.3_resque2_redis4.gemfile +++ b/gemfiles/ruby_3.3_resque2_redis4.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_resque2_redis4.gemfile.lock b/gemfiles/ruby_3.3_resque2_redis4.gemfile.lock index 3a7752fc4de..6f7f5a1b407 100644 --- a/gemfiles/ruby_3.3_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_3.3_resque2_redis4.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -50,8 +50,8 @@ GEM json (2.6.3) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -95,21 +95,21 @@ GEM sinatra (>= 0.9.2) rexml (3.2.8) strscan (>= 3.0.9) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-collection_matchers (1.2.0) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-collection_matchers (1.2.1) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.5) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.6.0) @@ -184,7 +184,7 @@ DEPENDENCIES redis (>= 4.0) resque (>= 2.0) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_sinatra_2.gemfile b/gemfiles/ruby_3.3_sinatra_2.gemfile index 829793bf92f..7ad06f5d3cb 100644 --- a/gemfiles/ruby_3.3_sinatra_2.gemfile +++ b/gemfiles/ruby_3.3_sinatra_2.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_sinatra_2.gemfile.lock b/gemfiles/ruby_3.3_sinatra_2.gemfile.lock index cab01f0a15d..9f0995c795f 100644 --- a/gemfiles/ruby_3.3_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_3.3_sinatra_2.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -53,8 +53,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -181,7 +181,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_sinatra_3.gemfile b/gemfiles/ruby_3.3_sinatra_3.gemfile index b32d81abb42..d85e1bbb042 100644 --- a/gemfiles/ruby_3.3_sinatra_3.gemfile +++ b/gemfiles/ruby_3.3_sinatra_3.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_sinatra_3.gemfile.lock b/gemfiles/ruby_3.3_sinatra_3.gemfile.lock index 6bcb70bde8a..8b9b5af6978 100644 --- a/gemfiles/ruby_3.3_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_3.3_sinatra_3.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -54,8 +54,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -183,7 +183,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_sinatra_4.gemfile b/gemfiles/ruby_3.3_sinatra_4.gemfile index 4f2f198fcc7..d480f436817 100644 --- a/gemfiles/ruby_3.3_sinatra_4.gemfile +++ b/gemfiles/ruby_3.3_sinatra_4.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_sinatra_4.gemfile.lock b/gemfiles/ruby_3.3_sinatra_4.gemfile.lock index 5746924744b..f25c9f0dc50 100644 --- a/gemfiles/ruby_3.3_sinatra_4.gemfile.lock +++ b/gemfiles/ruby_3.3_sinatra_4.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -54,8 +54,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -186,7 +186,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_stripe_10.gemfile b/gemfiles/ruby_3.3_stripe_10.gemfile index 78c1b12b157..8cbdf34419c 100644 --- a/gemfiles/ruby_3.3_stripe_10.gemfile +++ b/gemfiles/ruby_3.3_stripe_10.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_stripe_10.gemfile.lock b/gemfiles/ruby_3.3_stripe_10.gemfile.lock index a17fe36f292..6411e7bf6c0 100644 --- a/gemfiles/ruby_3.3_stripe_10.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_10.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -53,8 +53,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -164,7 +164,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_stripe_11.gemfile b/gemfiles/ruby_3.3_stripe_11.gemfile index 97cc42bc32b..0210f5d0ad4 100644 --- a/gemfiles/ruby_3.3_stripe_11.gemfile +++ b/gemfiles/ruby_3.3_stripe_11.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_stripe_11.gemfile.lock b/gemfiles/ruby_3.3_stripe_11.gemfile.lock index ecd331cc6fa..6e524049b53 100644 --- a/gemfiles/ruby_3.3_stripe_11.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_11.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -53,8 +53,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -164,7 +164,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_stripe_12.gemfile b/gemfiles/ruby_3.3_stripe_12.gemfile index d32c0492d04..38f3510a912 100644 --- a/gemfiles/ruby_3.3_stripe_12.gemfile +++ b/gemfiles/ruby_3.3_stripe_12.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_stripe_12.gemfile.lock b/gemfiles/ruby_3.3_stripe_12.gemfile.lock index d9c7aee0a07..23931db9524 100644 --- a/gemfiles/ruby_3.3_stripe_12.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_12.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -53,8 +53,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -164,7 +164,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_stripe_7.gemfile b/gemfiles/ruby_3.3_stripe_7.gemfile index f6058cec9af..0541f5bfae5 100644 --- a/gemfiles/ruby_3.3_stripe_7.gemfile +++ b/gemfiles/ruby_3.3_stripe_7.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_stripe_7.gemfile.lock b/gemfiles/ruby_3.3_stripe_7.gemfile.lock index 14b1e946ce7..94013150e2d 100644 --- a/gemfiles/ruby_3.3_stripe_7.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_7.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -53,8 +53,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -164,7 +164,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_stripe_8.gemfile b/gemfiles/ruby_3.3_stripe_8.gemfile index 207e52f7ef0..9978c7f0474 100644 --- a/gemfiles/ruby_3.3_stripe_8.gemfile +++ b/gemfiles/ruby_3.3_stripe_8.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_stripe_8.gemfile.lock b/gemfiles/ruby_3.3_stripe_8.gemfile.lock index 9718daf1580..7724e3ef991 100644 --- a/gemfiles/ruby_3.3_stripe_8.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_8.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -53,8 +53,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -164,7 +164,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_stripe_9.gemfile b/gemfiles/ruby_3.3_stripe_9.gemfile index 694bb73a25f..d8f968d6e5a 100644 --- a/gemfiles/ruby_3.3_stripe_9.gemfile +++ b/gemfiles/ruby_3.3_stripe_9.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_stripe_9.gemfile.lock b/gemfiles/ruby_3.3_stripe_9.gemfile.lock index 85dc9a7aa2e..8aab8dad2f3 100644 --- a/gemfiles/ruby_3.3_stripe_9.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_9.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -53,8 +53,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -164,7 +164,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_stripe_latest.gemfile b/gemfiles/ruby_3.3_stripe_latest.gemfile index 75c1fc97991..2ddc72a903e 100644 --- a/gemfiles/ruby_3.3_stripe_latest.gemfile +++ b/gemfiles/ruby_3.3_stripe_latest.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_stripe_latest.gemfile.lock b/gemfiles/ruby_3.3_stripe_latest.gemfile.lock index 1b7259d9c5b..c6c68551ad7 100644 --- a/gemfiles/ruby_3.3_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_latest.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -53,8 +53,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -129,7 +129,7 @@ GEM simplecov (~> 0.19) simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) - stripe (13.0.2) + stripe (13.1.0) thor (1.3.2) unicode-display_width (2.6.0) warning (1.4.0) @@ -162,7 +162,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.3_stripe_min.gemfile b/gemfiles/ruby_3.3_stripe_min.gemfile index 001cec5c97f..c423a54874e 100644 --- a/gemfiles/ruby_3.3_stripe_min.gemfile +++ b/gemfiles/ruby_3.3_stripe_min.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.3_stripe_min.gemfile.lock b/gemfiles/ruby_3.3_stripe_min.gemfile.lock index 0e714879dd4..2dca2b2551a 100644 --- a/gemfiles/ruby_3.3_stripe_min.gemfile.lock +++ b/gemfiles/ruby_3.3_stripe_min.gemfile.lock @@ -11,9 +11,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -53,8 +53,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -162,7 +162,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_activesupport.gemfile b/gemfiles/ruby_3.4_activesupport.gemfile index 5ce74e2f51c..ced389edc1b 100644 --- a/gemfiles/ruby_3.4_activesupport.gemfile +++ b/gemfiles/ruby_3.4_activesupport.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_activesupport.gemfile.lock b/gemfiles/ruby_3.4_activesupport.gemfile.lock index 71188728292..561142b32bc 100644 --- a/gemfiles/ruby_3.4_activesupport.gemfile.lock +++ b/gemfiles/ruby_3.4_activesupport.gemfile.lock @@ -18,9 +18,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -130,8 +130,8 @@ GEM addressable (>= 2.4) jsonapi-renderer (0.2.2) king_konf (1.0.1) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -311,7 +311,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_aws.gemfile b/gemfiles/ruby_3.4_aws.gemfile index bb8c486d47e..7c5811dbcb6 100644 --- a/gemfiles/ruby_3.4_aws.gemfile +++ b/gemfiles/ruby_3.4_aws.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_aws.gemfile.lock b/gemfiles/ruby_3.4_aws.gemfile.lock index a481726295d..2a557d5d5bf 100644 --- a/gemfiles/ruby_3.4_aws.gemfile.lock +++ b/gemfiles/ruby_3.4_aws.gemfile.lock @@ -18,9 +18,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -1607,8 +1607,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -1727,7 +1727,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_contrib.gemfile b/gemfiles/ruby_3.4_contrib.gemfile index 3afda7b1380..a71bbe1e97e 100644 --- a/gemfiles/ruby_3.4_contrib.gemfile +++ b/gemfiles/ruby_3.4_contrib.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 12.3" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" @@ -43,6 +43,7 @@ gem "sidekiq", "~> 7" gem "sneakers", ">= 2.12.0" gem "sucker_punch" gem "que", ">= 1.0.0" +gem "rackup" group :check do gem "ruby_memcheck", ">= 3" diff --git a/gemfiles/ruby_3.4_contrib.gemfile.lock b/gemfiles/ruby_3.4_contrib.gemfile.lock index 4172f0d5fa0..49e23572c64 100644 --- a/gemfiles/ruby_3.4_contrib.gemfile.lock +++ b/gemfiles/ruby_3.4_contrib.gemfile.lock @@ -18,9 +18,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -71,8 +71,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -113,6 +113,8 @@ GEM rack (>= 3.0.0) rack-test (2.1.0) rack (>= 1.3) + rackup (2.2.0) + rack (>= 3) rainbow (3.1.1) rake (12.3.3) rake-compiler (1.2.7) @@ -247,12 +249,13 @@ DEPENDENCIES pry-stack_explorer que (>= 1.0.0) rack-test + rackup rake (>= 12.3) rake-compiler (~> 1.1, >= 1.1.1) resque rexml (>= 3.2.7) roda (>= 2.0.0) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_contrib_old.gemfile b/gemfiles/ruby_3.4_contrib_old.gemfile index 57de5bbbd66..607a5280daa 100644 --- a/gemfiles/ruby_3.4_contrib_old.gemfile +++ b/gemfiles/ruby_3.4_contrib_old.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_contrib_old.gemfile.lock b/gemfiles/ruby_3.4_contrib_old.gemfile.lock index cab540f6998..9b981f226b0 100644 --- a/gemfiles/ruby_3.4_contrib_old.gemfile.lock +++ b/gemfiles/ruby_3.4_contrib_old.gemfile.lock @@ -18,9 +18,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -69,8 +69,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -230,7 +230,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_core_old.gemfile b/gemfiles/ruby_3.4_core_old.gemfile index b22a5c5dbbe..3b9b1c9b4a4 100644 --- a/gemfiles/ruby_3.4_core_old.gemfile +++ b/gemfiles/ruby_3.4_core_old.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_core_old.gemfile.lock b/gemfiles/ruby_3.4_core_old.gemfile.lock index c4d3ef89a89..39f6f316d87 100644 --- a/gemfiles/ruby_3.4_core_old.gemfile.lock +++ b/gemfiles/ruby_3.4_core_old.gemfile.lock @@ -18,9 +18,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -58,8 +58,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -173,7 +173,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_elasticsearch_7.gemfile b/gemfiles/ruby_3.4_elasticsearch_7.gemfile index fe4ba5fb4b3..2c8c5e2cb4f 100644 --- a/gemfiles/ruby_3.4_elasticsearch_7.gemfile +++ b/gemfiles/ruby_3.4_elasticsearch_7.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock b/gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock index 9ce1c1bb802..6c8bd0f1b59 100644 --- a/gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock +++ b/gemfiles/ruby_3.4_elasticsearch_7.gemfile.lock @@ -18,9 +18,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -71,11 +71,11 @@ GEM ffi (1.17.0) google-protobuf (3.25.3) hashdiff (1.1.0) - json (2.7.2) + json (2.7.5) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -195,7 +195,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_elasticsearch_8.gemfile b/gemfiles/ruby_3.4_elasticsearch_8.gemfile index 0a942854ab8..215bc42c079 100644 --- a/gemfiles/ruby_3.4_elasticsearch_8.gemfile +++ b/gemfiles/ruby_3.4_elasticsearch_8.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock b/gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock index 393839870f6..310d77ffb59 100644 --- a/gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock +++ b/gemfiles/ruby_3.4_elasticsearch_8.gemfile.lock @@ -18,9 +18,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -69,11 +69,11 @@ GEM ffi (1.17.0) google-protobuf (3.25.3) hashdiff (1.1.0) - json (2.7.2) + json (2.7.5) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -193,7 +193,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_elasticsearch_latest.gemfile b/gemfiles/ruby_3.4_elasticsearch_latest.gemfile index 2c761b80142..42bfb2575e5 100644 --- a/gemfiles/ruby_3.4_elasticsearch_latest.gemfile +++ b/gemfiles/ruby_3.4_elasticsearch_latest.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock b/gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock index 894a4e91bbc..f097d8a6966 100644 --- a/gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.4_elasticsearch_latest.gemfile.lock @@ -18,9 +18,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -69,11 +69,11 @@ GEM ffi (1.17.0) google-protobuf (3.25.4) hashdiff (1.1.1) - json (2.7.4) + json (2.7.5) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -191,7 +191,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_graphql_1.13.gemfile b/gemfiles/ruby_3.4_graphql_1.13.gemfile index e83c7febdd5..7a45976a5df 100644 --- a/gemfiles/ruby_3.4_graphql_1.13.gemfile +++ b/gemfiles/ruby_3.4_graphql_1.13.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_graphql_1.13.gemfile.lock b/gemfiles/ruby_3.4_graphql_1.13.gemfile.lock index 691d5869279..283d0c10393 100644 --- a/gemfiles/ruby_3.4_graphql_1.13.gemfile.lock +++ b/gemfiles/ruby_3.4_graphql_1.13.gemfile.lock @@ -18,9 +18,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -128,8 +128,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -321,7 +321,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_graphql_2.0.gemfile b/gemfiles/ruby_3.4_graphql_2.0.gemfile index e21a64655c9..06f39a3741c 100644 --- a/gemfiles/ruby_3.4_graphql_2.0.gemfile +++ b/gemfiles/ruby_3.4_graphql_2.0.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.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 748fbe32d30..06bfb5bf0bb 100644 --- a/gemfiles/ruby_3.4_graphql_2.0.gemfile.lock +++ b/gemfiles/ruby_3.4_graphql_2.0.gemfile.lock @@ -18,9 +18,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -128,8 +128,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -321,7 +321,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_graphql_2.1.gemfile b/gemfiles/ruby_3.4_graphql_2.1.gemfile index 3c6d5f7916d..351ba7ff093 100644 --- a/gemfiles/ruby_3.4_graphql_2.1.gemfile +++ b/gemfiles/ruby_3.4_graphql_2.1.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.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 eea0788904a..84cd370bb93 100644 --- a/gemfiles/ruby_3.4_graphql_2.1.gemfile.lock +++ b/gemfiles/ruby_3.4_graphql_2.1.gemfile.lock @@ -18,9 +18,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -128,8 +128,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -321,7 +321,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_graphql_2.2.gemfile b/gemfiles/ruby_3.4_graphql_2.2.gemfile index 429dc7f1ea0..b67244a15a3 100644 --- a/gemfiles/ruby_3.4_graphql_2.2.gemfile +++ b/gemfiles/ruby_3.4_graphql_2.2.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.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 4dee27db3a2..f5ece9f4085 100644 --- a/gemfiles/ruby_3.4_graphql_2.2.gemfile.lock +++ b/gemfiles/ruby_3.4_graphql_2.2.gemfile.lock @@ -18,9 +18,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -128,8 +128,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -321,7 +321,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_graphql_2.3.gemfile b/gemfiles/ruby_3.4_graphql_2.3.gemfile index d9cdd3fd9c8..b22d1cb75f1 100644 --- a/gemfiles/ruby_3.4_graphql_2.3.gemfile +++ b/gemfiles/ruby_3.4_graphql_2.3.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.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 94afb07a008..5010c2c21f4 100644 --- a/gemfiles/ruby_3.4_graphql_2.3.gemfile.lock +++ b/gemfiles/ruby_3.4_graphql_2.3.gemfile.lock @@ -18,9 +18,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -128,8 +128,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -321,7 +321,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_http.gemfile b/gemfiles/ruby_3.4_http.gemfile index d9e2688b48d..9aa21368de3 100644 --- a/gemfiles/ruby_3.4_http.gemfile +++ b/gemfiles/ruby_3.4_http.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_http.gemfile.lock b/gemfiles/ruby_3.4_http.gemfile.lock index f5e4958924c..054a1d41d3d 100644 --- a/gemfiles/ruby_3.4_http.gemfile.lock +++ b/gemfiles/ruby_3.4_http.gemfile.lock @@ -18,9 +18,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -81,8 +81,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -219,7 +219,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) rest-client rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_opensearch_2.gemfile b/gemfiles/ruby_3.4_opensearch_2.gemfile index 3ee4894821e..07c3c207c6e 100644 --- a/gemfiles/ruby_3.4_opensearch_2.gemfile +++ b/gemfiles/ruby_3.4_opensearch_2.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_opensearch_2.gemfile.lock b/gemfiles/ruby_3.4_opensearch_2.gemfile.lock index 43a8e9e6038..5a4f88ac79b 100644 --- a/gemfiles/ruby_3.4_opensearch_2.gemfile.lock +++ b/gemfiles/ruby_3.4_opensearch_2.gemfile.lock @@ -18,9 +18,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -61,11 +61,11 @@ GEM ffi (1.17.0) google-protobuf (3.25.3) hashdiff (1.1.0) - json (2.7.2) + json (2.7.5) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -193,7 +193,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_opensearch_3.gemfile b/gemfiles/ruby_3.4_opensearch_3.gemfile index 410a9822b64..3b2e739a65d 100644 --- a/gemfiles/ruby_3.4_opensearch_3.gemfile +++ b/gemfiles/ruby_3.4_opensearch_3.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_opensearch_3.gemfile.lock b/gemfiles/ruby_3.4_opensearch_3.gemfile.lock index 686505fefe1..32b6d86a91b 100644 --- a/gemfiles/ruby_3.4_opensearch_3.gemfile.lock +++ b/gemfiles/ruby_3.4_opensearch_3.gemfile.lock @@ -18,9 +18,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -61,11 +61,11 @@ GEM ffi (1.17.0) google-protobuf (3.25.3) hashdiff (1.1.0) - json (2.7.2) + json (2.7.5) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -188,7 +188,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_opensearch_latest.gemfile b/gemfiles/ruby_3.4_opensearch_latest.gemfile index ae99564470b..c24cb632c03 100644 --- a/gemfiles/ruby_3.4_opensearch_latest.gemfile +++ b/gemfiles/ruby_3.4_opensearch_latest.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_opensearch_latest.gemfile.lock b/gemfiles/ruby_3.4_opensearch_latest.gemfile.lock index d74dd474b90..a76ceed7c35 100644 --- a/gemfiles/ruby_3.4_opensearch_latest.gemfile.lock +++ b/gemfiles/ruby_3.4_opensearch_latest.gemfile.lock @@ -18,9 +18,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -61,11 +61,11 @@ GEM ffi (1.17.0) google-protobuf (3.25.4) hashdiff (1.1.1) - json (2.7.4) + json (2.7.5) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -186,7 +186,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_opentelemetry.gemfile b/gemfiles/ruby_3.4_opentelemetry.gemfile index c82a10bc783..9ca7dfcc901 100644 --- a/gemfiles/ruby_3.4_opentelemetry.gemfile +++ b/gemfiles/ruby_3.4_opentelemetry.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_opentelemetry.gemfile.lock b/gemfiles/ruby_3.4_opentelemetry.gemfile.lock index ad99bb231c2..264aadbdc78 100644 --- a/gemfiles/ruby_3.4_opentelemetry.gemfile.lock +++ b/gemfiles/ruby_3.4_opentelemetry.gemfile.lock @@ -18,9 +18,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -58,8 +58,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -186,7 +186,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile b/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile index 5a4e959d974..2ae47aa92a4 100644 --- a/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile +++ b/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile.lock b/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile.lock index 663982dce59..6faf28081d8 100644 --- a/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile.lock +++ b/gemfiles/ruby_3.4_opentelemetry_otlp.gemfile.lock @@ -18,9 +18,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -60,8 +60,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -194,7 +194,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_rack_2.gemfile b/gemfiles/ruby_3.4_rack_2.gemfile index 4e752ded300..a9376b49145 100644 --- a/gemfiles/ruby_3.4_rack_2.gemfile +++ b/gemfiles/ruby_3.4_rack_2.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_rack_2.gemfile.lock b/gemfiles/ruby_3.4_rack_2.gemfile.lock index 81282822362..d4ef1af5b0b 100644 --- a/gemfiles/ruby_3.4_rack_2.gemfile.lock +++ b/gemfiles/ruby_3.4_rack_2.gemfile.lock @@ -18,9 +18,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -58,8 +58,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -181,7 +181,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_rack_3.gemfile b/gemfiles/ruby_3.4_rack_3.gemfile index 9f69e2a816a..40d9bfd1d27 100644 --- a/gemfiles/ruby_3.4_rack_3.gemfile +++ b/gemfiles/ruby_3.4_rack_3.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_rack_3.gemfile.lock b/gemfiles/ruby_3.4_rack_3.gemfile.lock index b9a964705ac..079dd98eb3b 100644 --- a/gemfiles/ruby_3.4_rack_3.gemfile.lock +++ b/gemfiles/ruby_3.4_rack_3.gemfile.lock @@ -18,9 +18,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -58,8 +58,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -181,7 +181,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_rack_latest.gemfile b/gemfiles/ruby_3.4_rack_latest.gemfile index ded80c89def..30697f7cada 100644 --- a/gemfiles/ruby_3.4_rack_latest.gemfile +++ b/gemfiles/ruby_3.4_rack_latest.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_rack_latest.gemfile.lock b/gemfiles/ruby_3.4_rack_latest.gemfile.lock index c2f955d3077..45ce9ec3dc0 100644 --- a/gemfiles/ruby_3.4_rack_latest.gemfile.lock +++ b/gemfiles/ruby_3.4_rack_latest.gemfile.lock @@ -18,9 +18,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -58,8 +58,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -179,7 +179,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_rails61_mysql2.gemfile b/gemfiles/ruby_3.4_rails61_mysql2.gemfile index 688cc46c6fc..061f6771d37 100644 --- a/gemfiles/ruby_3.4_rails61_mysql2.gemfile +++ b/gemfiles/ruby_3.4_rails61_mysql2.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_rails61_mysql2.gemfile.lock b/gemfiles/ruby_3.4_rails61_mysql2.gemfile.lock index 8cafbd61973..e25890d8954 100644 --- a/gemfiles/ruby_3.4_rails61_mysql2.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_mysql2.gemfile.lock @@ -18,9 +18,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -126,8 +126,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -319,7 +319,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_rails61_postgres.gemfile b/gemfiles/ruby_3.4_rails61_postgres.gemfile index 3b8eae0ac66..241b462effb 100644 --- a/gemfiles/ruby_3.4_rails61_postgres.gemfile +++ b/gemfiles/ruby_3.4_rails61_postgres.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_rails61_postgres.gemfile.lock b/gemfiles/ruby_3.4_rails61_postgres.gemfile.lock index af016c7825c..42a396abc44 100644 --- a/gemfiles/ruby_3.4_rails61_postgres.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_postgres.gemfile.lock @@ -18,9 +18,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -126,8 +126,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -319,7 +319,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile b/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile index aedc43a52c4..271f666542b 100644 --- a/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile +++ b/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.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 6f28efbbbc2..87e2a9f2c6c 100644 --- a/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_postgres_redis.gemfile.lock @@ -18,9 +18,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -126,8 +126,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -321,7 +321,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 4) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile b/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile index b5c50612d4e..d08119ece0b 100644 --- a/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile +++ b/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.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 a801b5c3e71..99677fbfb6c 100644 --- a/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_postgres_sidekiq.gemfile.lock @@ -18,9 +18,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -127,8 +127,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -334,7 +334,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile b/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile index fc150d7657b..af832684acf 100644 --- a/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile +++ b/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.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 91280a0a67f..e6a7774a2a2 100644 --- a/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_semantic_logger.gemfile.lock @@ -18,9 +18,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -126,8 +126,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -318,7 +318,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_rails61_trilogy.gemfile b/gemfiles/ruby_3.4_rails61_trilogy.gemfile index a9c460f34b0..80abaa9dd2c 100644 --- a/gemfiles/ruby_3.4_rails61_trilogy.gemfile +++ b/gemfiles/ruby_3.4_rails61_trilogy.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_rails61_trilogy.gemfile.lock b/gemfiles/ruby_3.4_rails61_trilogy.gemfile.lock index ea0fb832d96..2fe732ca572 100644 --- a/gemfiles/ruby_3.4_rails61_trilogy.gemfile.lock +++ b/gemfiles/ruby_3.4_rails61_trilogy.gemfile.lock @@ -18,9 +18,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -129,8 +129,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -322,7 +322,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_rails7.gemfile b/gemfiles/ruby_3.4_rails7.gemfile index 56cecfad6d7..f51db7e7f91 100644 --- a/gemfiles/ruby_3.4_rails7.gemfile +++ b/gemfiles/ruby_3.4_rails7.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_rails7.gemfile.lock b/gemfiles/ruby_3.4_rails7.gemfile.lock index 9819f5a319d..857148d96d5 100644 --- a/gemfiles/ruby_3.4_rails7.gemfile.lock +++ b/gemfiles/ruby_3.4_rails7.gemfile.lock @@ -18,9 +18,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -131,9 +131,9 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0) ffi (~> 1.0) libddwaf (1.15.0.0.0-aarch64-linux) @@ -309,7 +309,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_rails71.gemfile b/gemfiles/ruby_3.4_rails71.gemfile index 64a2085782a..e91a40e9a7f 100644 --- a/gemfiles/ruby_3.4_rails71.gemfile +++ b/gemfiles/ruby_3.4_rails71.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_rails71.gemfile.lock b/gemfiles/ruby_3.4_rails71.gemfile.lock index 747ceca003c..e6d5223eddc 100644 --- a/gemfiles/ruby_3.4_rails71.gemfile.lock +++ b/gemfiles/ruby_3.4_rails71.gemfile.lock @@ -18,9 +18,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -147,9 +147,9 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0) ffi (~> 1.0) libddwaf (1.15.0.0.0-aarch64-linux) @@ -339,7 +339,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_redis_3.gemfile b/gemfiles/ruby_3.4_redis_3.gemfile index 10357a8365e..1ea13426c77 100644 --- a/gemfiles/ruby_3.4_redis_3.gemfile +++ b/gemfiles/ruby_3.4_redis_3.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_redis_3.gemfile.lock b/gemfiles/ruby_3.4_redis_3.gemfile.lock index 81e0bf87cfa..570bd58e491 100644 --- a/gemfiles/ruby_3.4_redis_3.gemfile.lock +++ b/gemfiles/ruby_3.4_redis_3.gemfile.lock @@ -18,9 +18,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -58,8 +58,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -175,7 +175,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 3) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_redis_4.gemfile b/gemfiles/ruby_3.4_redis_4.gemfile index 0266b59404c..3aa7f3f6ed5 100644 --- a/gemfiles/ruby_3.4_redis_4.gemfile +++ b/gemfiles/ruby_3.4_redis_4.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_redis_4.gemfile.lock b/gemfiles/ruby_3.4_redis_4.gemfile.lock index ac89a182419..6650559a14b 100644 --- a/gemfiles/ruby_3.4_redis_4.gemfile.lock +++ b/gemfiles/ruby_3.4_redis_4.gemfile.lock @@ -18,9 +18,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -58,8 +58,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -175,7 +175,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 4) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_redis_5.gemfile b/gemfiles/ruby_3.4_redis_5.gemfile index 12f3e2062dd..5f366ad89a3 100644 --- a/gemfiles/ruby_3.4_redis_5.gemfile +++ b/gemfiles/ruby_3.4_redis_5.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_redis_5.gemfile.lock b/gemfiles/ruby_3.4_redis_5.gemfile.lock index 044a48fa0f5..63e842df5b8 100644 --- a/gemfiles/ruby_3.4_redis_5.gemfile.lock +++ b/gemfiles/ruby_3.4_redis_5.gemfile.lock @@ -18,9 +18,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -59,8 +59,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -179,7 +179,7 @@ DEPENDENCIES rake-compiler (~> 1.1, >= 1.1.1) redis (~> 5) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_relational_db.gemfile b/gemfiles/ruby_3.4_relational_db.gemfile index 65294766f35..9fcc98858ae 100644 --- a/gemfiles/ruby_3.4_relational_db.gemfile +++ b/gemfiles/ruby_3.4_relational_db.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_relational_db.gemfile.lock b/gemfiles/ruby_3.4_relational_db.gemfile.lock index 1120d0e1c39..f3e00fb77a7 100644 --- a/gemfiles/ruby_3.4_relational_db.gemfile.lock +++ b/gemfiles/ruby_3.4_relational_db.gemfile.lock @@ -18,9 +18,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -84,8 +84,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -219,7 +219,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_resque2_redis3.gemfile b/gemfiles/ruby_3.4_resque2_redis3.gemfile index 3f7be9c86f6..04f6180996c 100644 --- a/gemfiles/ruby_3.4_resque2_redis3.gemfile +++ b/gemfiles/ruby_3.4_resque2_redis3.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_resque2_redis3.gemfile.lock b/gemfiles/ruby_3.4_resque2_redis3.gemfile.lock index beaf66bda38..dc40e328b97 100644 --- a/gemfiles/ruby_3.4_resque2_redis3.gemfile.lock +++ b/gemfiles/ruby_3.4_resque2_redis3.gemfile.lock @@ -18,9 +18,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -59,8 +59,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -202,7 +202,7 @@ DEPENDENCIES redis (< 4.0) resque (>= 2.0) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_resque2_redis4.gemfile b/gemfiles/ruby_3.4_resque2_redis4.gemfile index 78056275499..d8278629e35 100644 --- a/gemfiles/ruby_3.4_resque2_redis4.gemfile +++ b/gemfiles/ruby_3.4_resque2_redis4.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_resque2_redis4.gemfile.lock b/gemfiles/ruby_3.4_resque2_redis4.gemfile.lock index 7f349bee1f2..0928d56ae91 100644 --- a/gemfiles/ruby_3.4_resque2_redis4.gemfile.lock +++ b/gemfiles/ruby_3.4_resque2_redis4.gemfile.lock @@ -18,9 +18,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -60,8 +60,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -206,7 +206,7 @@ DEPENDENCIES redis (>= 4.0) resque (>= 2.0) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_sinatra_2.gemfile b/gemfiles/ruby_3.4_sinatra_2.gemfile index dec008b6194..1b7e2fd5d17 100644 --- a/gemfiles/ruby_3.4_sinatra_2.gemfile +++ b/gemfiles/ruby_3.4_sinatra_2.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_sinatra_2.gemfile.lock b/gemfiles/ruby_3.4_sinatra_2.gemfile.lock index 0c79fd6672a..1ce5d8f5d94 100644 --- a/gemfiles/ruby_3.4_sinatra_2.gemfile.lock +++ b/gemfiles/ruby_3.4_sinatra_2.gemfile.lock @@ -18,9 +18,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -58,8 +58,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -191,7 +191,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_sinatra_3.gemfile b/gemfiles/ruby_3.4_sinatra_3.gemfile index 73ef25e5299..54e52b9e138 100644 --- a/gemfiles/ruby_3.4_sinatra_3.gemfile +++ b/gemfiles/ruby_3.4_sinatra_3.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_sinatra_3.gemfile.lock b/gemfiles/ruby_3.4_sinatra_3.gemfile.lock index 7836f462873..42afc8733d0 100644 --- a/gemfiles/ruby_3.4_sinatra_3.gemfile.lock +++ b/gemfiles/ruby_3.4_sinatra_3.gemfile.lock @@ -18,9 +18,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -59,8 +59,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -193,7 +193,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_sinatra_4.gemfile b/gemfiles/ruby_3.4_sinatra_4.gemfile index 399676f5018..fa8811134f8 100644 --- a/gemfiles/ruby_3.4_sinatra_4.gemfile +++ b/gemfiles/ruby_3.4_sinatra_4.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_sinatra_4.gemfile.lock b/gemfiles/ruby_3.4_sinatra_4.gemfile.lock index 643a3c1c75c..5ec91757c08 100644 --- a/gemfiles/ruby_3.4_sinatra_4.gemfile.lock +++ b/gemfiles/ruby_3.4_sinatra_4.gemfile.lock @@ -18,9 +18,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -59,8 +59,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -196,7 +196,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_stripe_10.gemfile b/gemfiles/ruby_3.4_stripe_10.gemfile index f4c5df88aa6..bc86ca33398 100644 --- a/gemfiles/ruby_3.4_stripe_10.gemfile +++ b/gemfiles/ruby_3.4_stripe_10.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_stripe_10.gemfile.lock b/gemfiles/ruby_3.4_stripe_10.gemfile.lock index f80d1cd4645..cdb85f52384 100644 --- a/gemfiles/ruby_3.4_stripe_10.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_10.gemfile.lock @@ -18,9 +18,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -58,8 +58,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -174,7 +174,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_stripe_11.gemfile b/gemfiles/ruby_3.4_stripe_11.gemfile index 08638927178..390be357d7d 100644 --- a/gemfiles/ruby_3.4_stripe_11.gemfile +++ b/gemfiles/ruby_3.4_stripe_11.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_stripe_11.gemfile.lock b/gemfiles/ruby_3.4_stripe_11.gemfile.lock index 5be367b9b1c..c0e568afcfe 100644 --- a/gemfiles/ruby_3.4_stripe_11.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_11.gemfile.lock @@ -18,9 +18,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -58,8 +58,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -174,7 +174,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_stripe_12.gemfile b/gemfiles/ruby_3.4_stripe_12.gemfile index b4230fbc8c5..62b1c5353e0 100644 --- a/gemfiles/ruby_3.4_stripe_12.gemfile +++ b/gemfiles/ruby_3.4_stripe_12.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_stripe_12.gemfile.lock b/gemfiles/ruby_3.4_stripe_12.gemfile.lock index 66cca83638b..df6c677b9fd 100644 --- a/gemfiles/ruby_3.4_stripe_12.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_12.gemfile.lock @@ -18,9 +18,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -58,8 +58,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -174,7 +174,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_stripe_7.gemfile b/gemfiles/ruby_3.4_stripe_7.gemfile index c00d7092e18..6e08c4bdaeb 100644 --- a/gemfiles/ruby_3.4_stripe_7.gemfile +++ b/gemfiles/ruby_3.4_stripe_7.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_stripe_7.gemfile.lock b/gemfiles/ruby_3.4_stripe_7.gemfile.lock index 91d9d46af1e..b81ef08062e 100644 --- a/gemfiles/ruby_3.4_stripe_7.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_7.gemfile.lock @@ -18,9 +18,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -58,8 +58,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -174,7 +174,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_stripe_8.gemfile b/gemfiles/ruby_3.4_stripe_8.gemfile index 85c761e568c..7361ad248af 100644 --- a/gemfiles/ruby_3.4_stripe_8.gemfile +++ b/gemfiles/ruby_3.4_stripe_8.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_stripe_8.gemfile.lock b/gemfiles/ruby_3.4_stripe_8.gemfile.lock index aec1389458d..d10e2d30e67 100644 --- a/gemfiles/ruby_3.4_stripe_8.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_8.gemfile.lock @@ -18,9 +18,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -58,8 +58,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -174,7 +174,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_stripe_9.gemfile b/gemfiles/ruby_3.4_stripe_9.gemfile index f96202cecda..7b8fc7bc67a 100644 --- a/gemfiles/ruby_3.4_stripe_9.gemfile +++ b/gemfiles/ruby_3.4_stripe_9.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_stripe_9.gemfile.lock b/gemfiles/ruby_3.4_stripe_9.gemfile.lock index 6bc31a91e3a..09bddc42f87 100644 --- a/gemfiles/ruby_3.4_stripe_9.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_9.gemfile.lock @@ -18,9 +18,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -58,8 +58,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -174,7 +174,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_stripe_latest.gemfile b/gemfiles/ruby_3.4_stripe_latest.gemfile index 6a761d8c7a1..17c498999bd 100644 --- a/gemfiles/ruby_3.4_stripe_latest.gemfile +++ b/gemfiles/ruby_3.4_stripe_latest.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_stripe_latest.gemfile.lock b/gemfiles/ruby_3.4_stripe_latest.gemfile.lock index 4d570037fda..774d4c41881 100644 --- a/gemfiles/ruby_3.4_stripe_latest.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_latest.gemfile.lock @@ -18,9 +18,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -58,8 +58,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -140,7 +140,7 @@ GEM simplecov (~> 0.19) simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) - stripe (13.0.2) + stripe (13.1.0) thor (1.3.2) unicode-display_width (2.6.0) warning (1.4.0) @@ -172,7 +172,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/gemfiles/ruby_3.4_stripe_min.gemfile b/gemfiles/ruby_3.4_stripe_min.gemfile index e6cc3e6ba51..5f36641d99f 100644 --- a/gemfiles/ruby_3.4_stripe_min.gemfile +++ b/gemfiles/ruby_3.4_stripe_min.gemfile @@ -16,7 +16,7 @@ gem "pry" gem "pry-stack_explorer" gem "rake", ">= 10.5" gem "rake-compiler", "~> 1.1", ">= 1.1.1" -gem "rspec", "~> 3.12" +gem "rspec", "~> 3.13" gem "rspec-collection_matchers", "~> 1.1" gem "rspec-wait", "~> 0" gem "rspec_junit_formatter", ">= 0.5.1" diff --git a/gemfiles/ruby_3.4_stripe_min.gemfile.lock b/gemfiles/ruby_3.4_stripe_min.gemfile.lock index 285d56e993f..b587fa0fa05 100644 --- a/gemfiles/ruby_3.4_stripe_min.gemfile.lock +++ b/gemfiles/ruby_3.4_stripe_min.gemfile.lock @@ -18,9 +18,9 @@ GIT PATH remote: .. specs: - datadog (2.4.0) + datadog (2.6.0) datadog-ruby_core_source (~> 3.3) - libdatadog (~> 13.1.0.1.0) + libdatadog (~> 14.1.0.1.0) libddwaf (~> 1.15.0.0.0) msgpack @@ -58,8 +58,8 @@ GEM json (2.7.2) json-schema (2.8.1) addressable (>= 2.4) - libdatadog (13.1.0.1.0-aarch64-linux) - libdatadog (13.1.0.1.0-x86_64-linux) + libdatadog (14.1.0.1.0-aarch64-linux) + libdatadog (14.1.0.1.0-x86_64-linux) libddwaf (1.15.0.0.0-aarch64-linux) ffi (~> 1.0) libddwaf (1.15.0.0.0-x86_64-linux) @@ -172,7 +172,7 @@ DEPENDENCIES rake (>= 10.5) rake-compiler (~> 1.1, >= 1.1.1) rexml (>= 3.2.7) - rspec (~> 3.12) + rspec (~> 3.13) rspec-collection_matchers (~> 1.1) rspec-wait (~> 0) rspec_junit_formatter (>= 0.5.1) diff --git a/integration/apps/rspec/.dockerignore b/integration/apps/rspec/.dockerignore deleted file mode 100644 index b844b143d22..00000000000 --- a/integration/apps/rspec/.dockerignore +++ /dev/null @@ -1 +0,0 @@ -Gemfile.lock diff --git a/integration/apps/rspec/.envrc.sample b/integration/apps/rspec/.envrc.sample deleted file mode 100644 index e3e248b640c..00000000000 --- a/integration/apps/rspec/.envrc.sample +++ /dev/null @@ -1,3 +0,0 @@ -export DD_API_KEY= -export DD_HOSTNAME=$(hostname) -export RUBY_VERSION=2.7 diff --git a/integration/apps/rspec/.gitignore b/integration/apps/rspec/.gitignore deleted file mode 100644 index 5c941a29a9a..00000000000 --- a/integration/apps/rspec/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -.envrc -.byebug_history diff --git a/integration/apps/rspec/.rspec b/integration/apps/rspec/.rspec deleted file mode 100644 index c99d2e7396e..00000000000 --- a/integration/apps/rspec/.rspec +++ /dev/null @@ -1 +0,0 @@ ---require spec_helper diff --git a/integration/apps/rspec/Dockerfile b/integration/apps/rspec/Dockerfile deleted file mode 100644 index a70d1d57744..00000000000 --- a/integration/apps/rspec/Dockerfile +++ /dev/null @@ -1,25 +0,0 @@ -# Select base image -ARG BASE_IMAGE -FROM ${BASE_IMAGE} - -# Setup directory -RUN mkdir /app -WORKDIR /app - -# Setup specific version of datadog, if specified. -ARG gem_git_datadog -ENV DD_DEMO_ENV_GEM_GIT_DATADOG ${gem_git_datadog} - -ARG gem_ref_datadog -ENV DD_DEMO_ENV_GEM_REF_DATADOG ${gem_ref_datadog} - -# Install dependencies -COPY Gemfile /app/Gemfile -RUN bundle install - -# Add files -COPY . /app - -# Set entrypoint -ENTRYPOINT ["/bin/bash", "-c"] -CMD ["bin/setup && bin/run"] diff --git a/integration/apps/rspec/Dockerfile-ci b/integration/apps/rspec/Dockerfile-ci deleted file mode 100644 index 3eec0df6d13..00000000000 --- a/integration/apps/rspec/Dockerfile-ci +++ /dev/null @@ -1,11 +0,0 @@ -# Select base image -ARG BASE_IMAGE -FROM ${BASE_IMAGE} - -# Add gem -COPY . /vendor/dd-trace-rb - -# Install dependencies -# Setup specific version of datadog, if specified. -ENV DD_DEMO_ENV_GEM_LOCAL_DATADOG /vendor/dd-trace-rb -RUN bundle install diff --git a/integration/apps/rspec/Gemfile b/integration/apps/rspec/Gemfile deleted file mode 100644 index be4d827bd9b..00000000000 --- a/integration/apps/rspec/Gemfile +++ /dev/null @@ -1,14 +0,0 @@ -require 'datadog/demo_env' - -source "https://rubygems.org" - -gem 'ffi' -gem 'google-protobuf' - -# Choose correct specs for 'datadog' demo environment -gem 'datadog', *Datadog::DemoEnv.gem_spec('datadog') - -gem 'byebug' - -# Testing/CI -gem 'rspec' diff --git a/integration/apps/rspec/README.md b/integration/apps/rspec/README.md deleted file mode 100644 index ffc8a06e181..00000000000 --- a/integration/apps/rspec/README.md +++ /dev/null @@ -1,92 +0,0 @@ -# RSpec: Demo application for Datadog APM - -A generic RSpec test suite with some common use scenarios. - -For generating Datadog APM traces and profiles. - -## Installation - -Install [direnv](https://github.com/direnv/direnv) for applying local settings. - -1. `cp .envrc.sample .envrc` and add your Datadog API key. -2. `direnv allow` to load the env var. -3. `docker-compose run --rm app bin/setup` - -## Running the application - -### To monitor performance of Docker containers with Datadog - -```sh -docker run --rm --name dd-agent -v /var/run/docker.sock:/var/run/docker.sock:ro -v /proc/:/host/proc/:ro -v /sys/fs/cgroup/:/host/sys/fs/cgroup:ro -e API_KEY=$DD_API_KEY datadog/docker-dd-agent:latest -``` - -### Starting the application - -Run `docker-compose up` to auto-start the application. - -Alternatively, you can run it manually with: - -```sh -docker-compose run --rm app bin/run -``` - -The `` argument is optional, and will default to `DD_DEMO_ENV_PROCESS` if not provided. See [Processes](#processes) for more details. - -#### Running a specific version of Ruby - -By default it runs Ruby 2.7. You must reconfigure the application env variable `RUBY_VERSION`to use a different Ruby base image. - -Setting the `RUBY_VERSION` variable to 3.2 on your .envrc file would use the `datadog/dd-apm-demo:rb-3.2` image. - -If you haven't yet built the base image for this version, then you must: - -1. Build an appropriate Ruby base image via `./integration/script/build-images -v 3.2` - -Then rebuild the application environment with: - - ``` - # Delete old containers & volumes first - docker-compose down -v - - # Rebuild `app` image - docker-compose build --no-cache app - ``` - -Finally start the application. - -##### Processes - -Within the container, run `bin/run ` where `` is one of the following values: - - - `rspec`: RSpec test suite. - - `irb`: IRB session - - Alternatively, set `DD_DEMO_ENV_PROCESS` to run a particular process by default when `bin/run` is run. - -##### Features - -Set `DD_DEMO_ENV_FEATURES` to a comma-delimited list of any of the following values to activate the feature: - - - `tracing`: Tracing instrumentation - - `profiling`: Profiling (NOTE: Must also set `DD_PROFILING_ENABLED` to match.) - - `debug`: Enable diagnostic debug mode - - `analytics`: Enable trace analytics - - `runtime_metrics`: Enable runtime metrics - - `pprof_to_file`: Dump profiling pprof to file instead of agent. - -e.g. `DD_DEMO_ENV_FEATURES=tracing,profiling` - -### Running integration tests - -You can run integration tests using the following and substituting for the Ruby major and minor version (e.g. `2.7`). Currently, this integration test has nothing to do in CI, and there are no RSpec tests in `/bin/test`. - -```sh -./script/build-images -v -./script/ci -v -``` - -Or inside a running container: - -```sh -./bin/test -``` diff --git a/integration/apps/rspec/agent.yaml b/integration/apps/rspec/agent.yaml deleted file mode 100644 index 580b586f9ab..00000000000 --- a/integration/apps/rspec/agent.yaml +++ /dev/null @@ -1,3 +0,0 @@ -use_dogstatsd: true -dogstatsd_port: 8125 -dogstatsd_non_local_traffic: true diff --git a/integration/apps/rspec/app/datadog.rb b/integration/apps/rspec/app/datadog.rb deleted file mode 100644 index e4d3d5934f0..00000000000 --- a/integration/apps/rspec/app/datadog.rb +++ /dev/null @@ -1,22 +0,0 @@ -require 'datadog/demo_env' -require 'datadog/ci' - -Datadog.configure do |c| - c.service = 'acme-rspec' - c.diagnostics.debug = true if Datadog::DemoEnv.feature?('debug') - c.runtime_metrics.enabled = true if Datadog::DemoEnv.feature?('runtime_metrics') - - if Datadog::DemoEnv.feature?('tracing') - c.tracing.analytics.enabled = true if Datadog::DemoEnv.feature?('analytics') - end - - if Datadog::DemoEnv.feature?('ci') - c.ci.enabled = true - c.ci.instrument :rspec - end - - if Datadog::DemoEnv.feature?('pprof_to_file') - # Reconfigure transport to write pprof to file - c.profiling.exporter.transport = Datadog::DemoEnv.profiler_file_transport - end -end diff --git a/integration/apps/rspec/app/fibonacci.rb b/integration/apps/rspec/app/fibonacci.rb deleted file mode 100644 index ebae56e6571..00000000000 --- a/integration/apps/rspec/app/fibonacci.rb +++ /dev/null @@ -1,30 +0,0 @@ -require_relative 'datadog' - -def fib(n) - n <= 1 ? n : fib(n-1) + fib(n-2) -end - -def trace(*options, &block) - raise ArgumentError('Must provide trace block') unless block_given? - - if Datadog::DemoEnv.feature?('tracing') - Datadog::Tracing.trace(*options, &block) - else - yield - end -end - -def generate_fib - loop do - n = rand(25..35) - - trace('compute.fibonacci') do |span| - result = fib(n) - span.set_metric('operation.fibonacci.n', n) - span.set_metric('operation.fibonacci.result', result) - yield(span) if block_given? - end - - sleep(0.1) - end -end diff --git a/integration/apps/rspec/bin/run b/integration/apps/rspec/bin/run deleted file mode 100755 index 0a399654a7c..00000000000 --- a/integration/apps/rspec/bin/run +++ /dev/null @@ -1,20 +0,0 @@ -#!/usr/bin/env ruby - -# Start application process -puts "\n== Starting application process ==" - -profiling = Datadog::DemoEnv.feature?('profiling') ? 'DD_PROFILING_ENABLED=true ddprofrb exec ' : '' -process = (ARGV[0] || Datadog::DemoEnv.process) -command = case process - when 'rspec' - 'bundle exec rspec' - when 'irb' - "bundle exec #{profiling}irb" - when nil, '' - abort("\n== ERROR: Must specify a application process! ==") - else - abort("\n== ERROR: Unknown application process '#{process}' ==") - end - -puts "Run: #{command}" -Kernel.exec(command) diff --git a/integration/apps/rspec/bin/setup b/integration/apps/rspec/bin/setup deleted file mode 100755 index 7b3ad88624b..00000000000 --- a/integration/apps/rspec/bin/setup +++ /dev/null @@ -1,24 +0,0 @@ -#!/usr/bin/env ruby -require 'fileutils' -include FileUtils - -# path to your application root. -APP_ROOT = File.expand_path('..', __dir__) - -def system!(*args) - puts "Run: #{args.join(' ')}" - system(*args) || abort("\n== Command #{args} failed ==") -end - -chdir APP_ROOT do - puts "\n== Installing dependencies ==" - require '/vendor/dd-demo/build_datadog_profiling_native_extension' if ENV['DD_DEMO_ENV_BUILD_PROFILING_EXTENSION'] == 'true' - system! 'gem install bundler --conservative' - system('bundle check') || system!('bundle install') - - # Create an non-trivial git repository, to augment test payload information. - system! 'git init' - system! 'GIT_AUTHOR_NAME="Test Author" GIT_AUTHOR_EMAIL=author@local.test ' \ - 'GIT_COMMITTER_NAME="Test Committer" GIT_COMMITTER_EMAIL=committer@local.test ' \ - 'git commit --allow-empty -m "Test message"' -end diff --git a/integration/apps/rspec/bin/test b/integration/apps/rspec/bin/test deleted file mode 100755 index c7800daf5c5..00000000000 --- a/integration/apps/rspec/bin/test +++ /dev/null @@ -1,21 +0,0 @@ -#!/usr/bin/env ruby -require 'fileutils' -include FileUtils - -# path to your application root. -APP_ROOT = File.expand_path('..', __dir__) - -def system!(*args) - puts "Run: #{args.join(' ')}" - system(*args) || abort("\n== Command #{args} failed ==") -end - -chdir APP_ROOT do - puts "\n== Performing setup ==" - system!('./bin/setup') - - puts "\n== Run test suite ==" - # DEV: There are no RSpec tests right now. - # Re-enable this when we have something worth testing. - # system!('rspec') -end diff --git a/integration/apps/rspec/docker-compose.ci.yml b/integration/apps/rspec/docker-compose.ci.yml deleted file mode 100644 index 8e208e99b3c..00000000000 --- a/integration/apps/rspec/docker-compose.ci.yml +++ /dev/null @@ -1,40 +0,0 @@ -version: '3.4' -services: - app: - # Build at dd-trace-rb level to copy in current code - # and use it as the `datadog` gem. - build: - context: ../../.. - dockerfile: integration/apps/rspec/Dockerfile-ci - args: - BASE_IMAGE: ${APP_IMAGE} - environment: - - BUNDLE_GEMFILE=/app/Gemfile - - DD_AGENT_HOST=ddagent - - DD_METRIC_AGENT_PORT=8125 - - DD_TRACE_AGENT_PORT=8126 - - DD_HEALTH_METRICS_ENABLED=true - - DD_SERVICE=acme-rspec - - DD_PROFILING_ENABLED=true - # Use these to choose what is run - - DD_DEMO_ENV_PROCESS=rspec - - DD_DEMO_ENV_FEATURES=ci - stdin_open: true - tty: true - # The agent is not relevant to the result of running integration test on CI. - # Since the current integration test suite is mostly about sending a http request - # to an app and verified the responsee and run a couple of self-owned test cases. - # - # Build at dd-trace-rb level to copy in current code - # and use it as the `datadog` gem. - integration-tester: - build: - context: ../../.. - dockerfile: integration/apps/rspec/Dockerfile-ci - args: - BASE_IMAGE: ${APP_IMAGE} - command: bin/test - # volumes: - # - .:/app - # - ../../images/include:/vendor/dd-demo - # - ../../..:/vendor/dd-trace-rb diff --git a/integration/apps/rspec/docker-compose.yml b/integration/apps/rspec/docker-compose.yml deleted file mode 100644 index c96b44835e3..00000000000 --- a/integration/apps/rspec/docker-compose.yml +++ /dev/null @@ -1,65 +0,0 @@ -version: '3.4' -services: - app: - build: - context: . - args: - BASE_IMAGE: "datadog/dd-apm-demo:rb-${RUBY_VERSION}" - depends_on: - - ddagent - environment: - - BUNDLE_GEMFILE=/app/Gemfile - - DD_AGENT_HOST=ddagent - - DD_METRIC_AGENT_PORT=8125 - - DD_TRACE_AGENT_PORT=8126 - - DD_HEALTH_METRICS_ENABLED=true - - DD_SERVICE=acme-rspec - - DD_PROFILING_ENABLED=true - # Use these to choose what is run - - DD_DEMO_ENV_PROCESS=rspec - - DD_DEMO_ENV_FEATURES=ci - # Use this for a local version of datadog - - DD_DEMO_ENV_GEM_LOCAL_DATADOG=/vendor/dd-trace-rb - # Use these for a specific revision of datadog - # - DD_DEMO_ENV_GEM_GIT_DATADOG=https://github.com/DataDog/dd-trace-rb.git - # - DD_DEMO_ENV_GEM_REF_DATADOG=f233336994315bfa04dac581387a8152bab8b85a - stdin_open: true - tty: true - volumes: - - .:/app - - /app/.git - - ./data/app:/data/app - - bundle:/usr/local/bundle - - ../../images/include:/vendor/dd-demo - - ../../..:/vendor/dd-trace-rb - ddagent: - image: datadog/dd-apm-demo:agent - environment: - - DD_APM_ENABLED=true - - DD_PROCESS_AGENT_ENABLED=false - - DD_BIND_HOST=0.0.0.0 - - DD_API_KEY - - "DD_HOSTNAME=${DD_HOSTNAME}" - - LOG_LEVEL=DEBUG - - DD_LOGS_STDOUT=yes - - DD_DOGSTATSD_NON_LOCAL_TRAFFIC=true - expose: - - "8125/udp" - - "8126" - volumes: - - ../../images/agent/agent.yaml:/etc/datadog-agent/datadog.yaml - # For monitoring performance of containers (e.g. CPU, Memory, etc...) - # - type: bind - # source: ../../images/agent/agent.yaml - # target: /etc/datadog-agent/datadog.yaml - # - type: bind - # source: /var/run/docker.sock - # target: /var/run/docker.sock:ro - # - type: bind - # source: /proc/ - # target: /host/proc/:ro - # - type: bind - # source: /sys/fs/cgroup/ - # target: /host/sys/fs/cgroup:ro -volumes: - bundle: diff --git a/integration/apps/rspec/script/build-images b/integration/apps/rspec/script/build-images deleted file mode 100755 index 31b93b28e26..00000000000 --- a/integration/apps/rspec/script/build-images +++ /dev/null @@ -1,42 +0,0 @@ -#!/usr/bin/env bash -set -euo pipefail - -APP_SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )" -APP_DIR=${APP_SCRIPT_DIR%/script} -cd $APP_DIR - -while getopts ":v:" opt; do - case $opt in - v) - APP_RUBY_VERSION=$OPTARG - ;; - \?) - echo "Invalid option: -$OPTARG" >&2 - exit 1 - ;; - :) - echo "Option -$OPTARG requires an argument." >&2 - exit 1 - ;; - esac -done - -echo "== Building Ruby app images... ==" -if [ -v APP_RUBY_VERSION ]; then - docker build --build-arg BASE_IMAGE=datadog/dd-apm-demo:rb-$APP_RUBY_VERSION -t datadog/dd-apm-demo:rb-$APP_RUBY_VERSION-rspec . -else - docker build --build-arg BASE_IMAGE=datadog/dd-apm-demo:rb-2.1 -t datadog/dd-apm-demo:rb-2.1-rspec . - docker build --build-arg BASE_IMAGE=datadog/dd-apm-demo:rb-2.2 -t datadog/dd-apm-demo:rb-2.2-rspec . - docker build --build-arg BASE_IMAGE=datadog/dd-apm-demo:rb-2.3 -t datadog/dd-apm-demo:rb-2.3-rspec . - docker build --build-arg BASE_IMAGE=datadog/dd-apm-demo:rb-2.4 -t datadog/dd-apm-demo:rb-2.4-rspec . - docker build --build-arg BASE_IMAGE=datadog/dd-apm-demo:rb-2.5 -t datadog/dd-apm-demo:rb-2.5-rspec . - docker build --build-arg BASE_IMAGE=datadog/dd-apm-demo:rb-2.6 -t datadog/dd-apm-demo:rb-2.6-rspec . - docker build --build-arg BASE_IMAGE=datadog/dd-apm-demo:rb-2.7 -t datadog/dd-apm-demo:rb-2.7-rspec . - docker build --build-arg BASE_IMAGE=datadog/dd-apm-demo:rb-3.0 -t datadog/dd-apm-demo:rb-3.0-rspec . - docker build --build-arg BASE_IMAGE=datadog/dd-apm-demo:rb-3.1 -t datadog/dd-apm-demo:rb-3.1-rspec . - docker build --build-arg BASE_IMAGE=datadog/dd-apm-demo:rb-3.2 -t datadog/dd-apm-demo:rb-3.2-rspec . - docker build --build-arg BASE_IMAGE=datadog/dd-apm-demo:rb-3.3 -t datadog/dd-apm-demo:rb-3.3-rspec . - docker build --build-arg BASE_IMAGE=datadog/dd-apm-demo:rb-3.4 -t datadog/dd-apm-demo:rb-3.4-rspec . - # ADD NEW RUBIES HERE -fi -echo "== Done building Ruby app images. ==" diff --git a/integration/apps/rspec/script/ci b/integration/apps/rspec/script/ci deleted file mode 100755 index 10f9a9bfa7b..00000000000 --- a/integration/apps/rspec/script/ci +++ /dev/null @@ -1,56 +0,0 @@ -#!/usr/bin/env bash -set -euo pipefail - -echo "TODO: This integration test has nothing to do in CI (bin/test does not exercise anything)" -exit 1 - -APP_SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )" -APP_DIR=${APP_SCRIPT_DIR%/script} -cd $APP_DIR - -# Parse options -while getopts "v:" opt; do - case $opt in - v) - APP_RUBY_VERSION=$OPTARG - ;; - \?) - echo "Invalid option: -$OPTARG" >&2 - exit 1 - ;; - :) - echo "Option -$OPTARG requires an argument." >&2 - exit 1 - ;; - esac -done - -# Validate options -if [ -z ${APP_RUBY_VERSION+x} ]; then - echo "You must specify a Ruby version with -v. (e.g. 2.7)" >&2 - exit 1 -fi - -# Set configuration -APP_BASE_IMAGE=${APP_BASE_IMAGE:-datadog/dd-apm-demo:rb-$APP_RUBY_VERSION} -APP_IMAGE=${APP_IMAGE:-$APP_BASE_IMAGE-rspec} -APP_COMPOSE_FILES="-f docker-compose.ci.yml" - -echo "== Running integration tests... ==" -echo " - App: rspec" -echo " - Ruby version: $APP_RUBY_VERSION" -echo " - Base image: $APP_BASE_IMAGE" -echo " - App image: $APP_IMAGE" -echo "" - -# Pull/build any missing images -APP_IMAGE=$APP_IMAGE docker-compose $APP_COMPOSE_FILES build - -# Run the test suite -# NOTE: Normally we run "integration-tester" but in this case, the app is the test suite. -# Just run the app instead. -# It's expected to produce test failures and raise an exit code. Ignore this. -APP_IMAGE=$APP_IMAGE docker-compose $APP_COMPOSE_FILES run app || true - -# Cleanup -APP_IMAGE=$APP_IMAGE docker-compose $APP_COMPOSE_FILES down -t 0 --remove-orphans diff --git a/integration/apps/rspec/spec/fibonacci_spec.rb b/integration/apps/rspec/spec/fibonacci_spec.rb deleted file mode 100644 index f4585eb6abb..00000000000 --- a/integration/apps/rspec/spec/fibonacci_spec.rb +++ /dev/null @@ -1,16 +0,0 @@ -require_relative '../app/fibonacci' - -# Test some library functions -RSpec.describe '#fib' do - subject(:call_fib) { fib(n) } - let(:n) { rand(25..35) } - - it { is_expected.to be_a_kind_of(Integer) } - - context 'given a smaller and larger number' do - let(:smaller_fib) { fib(n) } - let(:larger_fib) { fib(n+1) } - - it { expect(larger_fib).to be > smaller_fib } - end -end diff --git a/integration/apps/rspec/spec/rspec_spec.rb b/integration/apps/rspec/spec/rspec_spec.rb deleted file mode 100644 index 9ddafb9d452..00000000000 --- a/integration/apps/rspec/spec/rspec_spec.rb +++ /dev/null @@ -1,58 +0,0 @@ -# Test some RSpec behavior -# NOTE: This file is expected to always produce some test errors! -# So that we can -RSpec.describe 'RSpec behavior' do - shared_examples_for 'correct behavior' do - it 'passes' do - expect(1).to be < 2 - end - end - - shared_examples_for 'incorrect behavior' do - it 'fails' do - expect(2).to be < 1 - end - end - - it 'passes correct assertions' do - expect(1).to be < 2 - end - - it 'fails incorrect assertions' do - expect(2).to be < 1 - end - - it_behaves_like 'correct behavior' - it_behaves_like 'incorrect behavior' - - context 'context' do - it_behaves_like 'correct behavior' - it_behaves_like 'incorrect behavior' - end - - context 'in a' do - context 'deeply' do - context 'nested' do - context 'context' do - it 'passes correct assertions' do - expect(1).to be < 2 - end - - it 'fails incorrect assertions' do - expect(2).to be < 1 - end - end - end - end - end - - context 'when calling traced code' do - it 'wraps the RSpec instrumentation around the traced code' do - Datadog::Tracing.trace('code_under_test') do |span| - time_to_run = rand - sleep(rand) - span.set_tag('run_time', time_to_run) - end - end - end -end diff --git a/integration/apps/rspec/spec/spec_helper.rb b/integration/apps/rspec/spec/spec_helper.rb deleted file mode 100644 index 4bfa6223838..00000000000 --- a/integration/apps/rspec/spec/spec_helper.rb +++ /dev/null @@ -1,24 +0,0 @@ -require 'datadog/ci' - -# Enable CI tracing -Datadog.configure do |c| - c.ci.enabled = true - c.ci.instrument :rspec -end - -RSpec.configure do |config| - config.expect_with :rspec do |expectations| - expectations.include_chain_clauses_in_custom_matcher_descriptions = true - end - - config.mock_with :rspec do |mocks| - mocks.verify_partial_doubles = true - end - - config.shared_context_metadata_behavior = :apply_to_host_groups - config.filter_run_when_matching :focus - config.disable_monkey_patching! - config.profile_examples = 10 - config.order = :random - Kernel.srand config.seed -end diff --git a/lib/datadog/appsec/processor/context.rb b/lib/datadog/appsec/processor/context.rb index 70afe4cb319..ea196d99840 100644 --- a/lib/datadog/appsec/processor/context.rb +++ b/lib/datadog/appsec/processor/context.rb @@ -1,7 +1,5 @@ # frozen_string_literal: true -require 'libddwaf' - module Datadog module AppSec class Processor diff --git a/lib/datadog/core/configuration/settings.rb b/lib/datadog/core/configuration/settings.rb index 4d0b9bb13ad..eb0386b3004 100644 --- a/lib/datadog/core/configuration/settings.rb +++ b/lib/datadog/core/configuration/settings.rb @@ -518,13 +518,13 @@ def initialize(*_) # Controls if the heap profiler should attempt to clean young objects after GC, rather than just at # serialization time. This lowers memory usage and high percentile latency. # - # Only takes effect when used together with `gc_enabled: true` and `experimental_heap_enabled: true`. + # Only has effect when used together with `gc_enabled: true` and `experimental_heap_enabled: true`. # - # @default false + # @default true option :heap_clean_after_gc_enabled do |o| o.type :bool o.env 'DD_PROFILING_HEAP_CLEAN_AFTER_GC_ENABLED' - o.default false + o.default true end end @@ -927,7 +927,7 @@ def initialize(*_) # Enables reporting of information when Ruby VM crashes. option :enabled do |o| o.type :bool - o.default false + o.default true o.env 'DD_CRASHTRACKING_ENABLED' end end diff --git a/lib/datadog/version.rb b/lib/datadog/version.rb index 1438267dbfc..e573ce64f47 100644 --- a/lib/datadog/version.rb +++ b/lib/datadog/version.rb @@ -3,7 +3,7 @@ module Datadog module VERSION MAJOR = 2 - MINOR = 4 + MINOR = 6 PATCH = 0 PRE = nil BUILD = nil diff --git a/spec/datadog/core/configuration/settings_spec.rb b/spec/datadog/core/configuration/settings_spec.rb index 7c309814fce..8bc17004801 100644 --- a/spec/datadog/core/configuration/settings_spec.rb +++ b/spec/datadog/core/configuration/settings_spec.rb @@ -932,7 +932,7 @@ context 'is not defined' do let(:environment) { nil } - it { is_expected.to be false } + it { is_expected.to be true } end [true, false].each do |value| @@ -947,10 +947,10 @@ describe '#heap_clean_after_gc_enabled=' do it 'updates the #heap_clean_after_gc_enabled setting' do - expect { settings.profiling.advanced.heap_clean_after_gc_enabled = true } + expect { settings.profiling.advanced.heap_clean_after_gc_enabled = false } .to change { settings.profiling.advanced.heap_clean_after_gc_enabled } - .from(false) - .to(true) + .from(true) + .to(false) end end @@ -2075,7 +2075,7 @@ context 'is not defined' do let(:environment) { nil } - it { is_expected.to be false } + it { is_expected.to be true } end [true, false].each do |value| @@ -2090,9 +2090,9 @@ describe '#enabled=' do it 'updates the #enabled setting' do - expect { settings.crashtracking.enabled = true } + expect { settings.crashtracking.enabled = false } .to change { settings.crashtracking.enabled } - .from(false).to(true) + .from(true).to(false) end end end diff --git a/spec/datadog/core/environment/execution_spec.rb b/spec/datadog/core/environment/execution_spec.rb index 0324384c511..4595715886e 100644 --- a/spec/datadog/core/environment/execution_spec.rb +++ b/spec/datadog/core/environment/execution_spec.rb @@ -191,6 +191,8 @@ def test_it_does_something_useful Open3.capture3('ruby', stdin_data: script) end + # Ruby 3.4 outputs an exception instead of the information to be asserted because of the forked process. + pending('Pending for Ruby 3.4.') if RUBY_VERSION.start_with?('3.4.') expect(err).to include('ACTUAL:true') end end diff --git a/spec/datadog/core/error_spec.rb b/spec/datadog/core/error_spec.rb index 93858a81045..3120bf417b2 100644 --- a/spec/datadog/core/error_spec.rb +++ b/spec/datadog/core/error_spec.rb @@ -89,12 +89,14 @@ def call expect(error.message).to eq('wrapper layer') # Outer-most error first, inner-most last + # Ruby 3.4 adjusts the format of error messages and Hash#inspect renderings + # https://www.ruby-lang.org/en/news/2024/10/07/ruby-3-4-0-preview2-released/ wrapper_error_message = /in.*wrapper': wrapper layer \(RuntimeError\)/ - wrapper_caller = /from.*in `call'/ + wrapper_caller = /from.*in ['`]call'/ middle_error_message = /in.*middle': middle cause \(RuntimeError\)/ - middle_caller = /from.*in `wrapper'/ - root_error_message = /in `root': root cause \(RuntimeError\)/ - root_caller = /from.*in `middle'/ + middle_caller = /from.*in ['`]wrapper'/ + root_error_message = /in ['`]root': root cause \(RuntimeError\)/ + root_caller = /from.*in ['`]middle'/ expect(error.backtrace) .to match( diff --git a/spec/datadog/profiling/collectors/cpu_and_wall_time_worker_spec.rb b/spec/datadog/profiling/collectors/cpu_and_wall_time_worker_spec.rb index 07747dcecf5..d65685df15d 100644 --- a/spec/datadog/profiling/collectors/cpu_and_wall_time_worker_spec.rb +++ b/spec/datadog/profiling/collectors/cpu_and_wall_time_worker_spec.rb @@ -1023,7 +1023,7 @@ all_samples = try_wait_until do samples = samples_from_pprof_without_gc_and_overhead(recorder.serialize!) - samples if samples.any? + samples if samples_for_thread(samples, process_waiter_thread).any? end cpu_and_wall_time_worker.stop diff --git a/spec/datadog/profiling/component_spec.rb b/spec/datadog/profiling/component_spec.rb index 8ff82a44e9a..f91d021c865 100644 --- a/spec/datadog/profiling/component_spec.rb +++ b/spec/datadog/profiling/component_spec.rb @@ -649,6 +649,8 @@ 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) + expect(Datadog::Profiling::Collectors::CpuAndWallTimeWorker) .to receive(:new).with(hash_including(gvl_profiling_enabled: false)) diff --git a/spec/datadog/profiling/http_transport_spec.rb b/spec/datadog/profiling/http_transport_spec.rb index d6189d58bac..44423984fab 100644 --- a/spec/datadog/profiling/http_transport_spec.rb +++ b/spec/datadog/profiling/http_transport_spec.rb @@ -222,6 +222,7 @@ before do expect(described_class).to receive(:_native_do_export).and_return([:ok, 500]) allow(Datadog.logger).to receive(:error) + allow(Datadog::Core::Telemetry::Logger).to receive(:error) end it "logs an error message" do @@ -248,6 +249,7 @@ before do expect(described_class).to receive(:_native_do_export).and_return([:error, "Some error message"]) allow(Datadog.logger).to receive(:error) + allow(Datadog::Core::Telemetry::Logger).to receive(:error) end it "logs an error message" do @@ -440,6 +442,7 @@ it "logs an error" do expect(Datadog.logger).to receive(:error).with(/error trying to connect/) + expect(Datadog::Core::Telemetry::Logger).to receive(:error).with("Failed to report profiling data") http_transport.export(flush) end @@ -451,6 +454,7 @@ it "logs an error" do expect(Datadog.logger).to receive(:error).with(/timed out/) + expect(Datadog::Core::Telemetry::Logger).to receive(:error).with("Failed to report profiling data") http_transport.export(flush) end @@ -461,6 +465,8 @@ it "logs an error" do expect(Datadog.logger).to receive(:error).with(/unexpected HTTP 418/) + expect(Datadog::Core::Telemetry::Logger) + .to receive(:error).with("Failed to report profiling data: unexpected HTTP 418 status code") http_transport.export(flush) end @@ -471,6 +477,8 @@ it "logs an error" do expect(Datadog.logger).to receive(:error).with(/unexpected HTTP 503/) + expect(Datadog::Core::Telemetry::Logger) + .to receive(:error).with("Failed to report profiling data: unexpected HTTP 503 status code") http_transport.export(flush) end diff --git a/spec/datadog/profiling/stack_recorder_spec.rb b/spec/datadog/profiling/stack_recorder_spec.rb index 4ab8891c7ee..9b2c644a192 100644 --- a/spec/datadog/profiling/stack_recorder_spec.rb +++ b/spec/datadog/profiling/stack_recorder_spec.rb @@ -929,6 +929,7 @@ def sample_and_clear context "when there is a failure during serialization" do before do allow(Datadog.logger).to receive(:error) + allow(Datadog::Core::Telemetry::Logger).to receive(:error) # Real failures in serialization are hard to trigger, so we're using a mock failure instead expect(described_class).to receive(:_native_serialize).and_return([:error, "test error message"]) diff --git a/spec/datadog/tracing/contrib/suite/integration_spec.rb b/spec/datadog/tracing/contrib/suite/integration_spec.rb index b6279e74baf..eaf37eb1f8a 100644 --- a/spec/datadog/tracing/contrib/suite/integration_spec.rb +++ b/spec/datadog/tracing/contrib/suite/integration_spec.rb @@ -8,7 +8,7 @@ require 'rack' # `Rack::Handler::WEBrick` was extracted to the `rackup` gem in Rack 3.0 -require 'rackup' if Rack::VERSION[0] >= 3 +require 'rackup' if Gem::Version.new(Rack::RELEASE) >= Gem::Version.new('3') require 'webrick' RSpec.describe 'contrib integration testing', :integration do diff --git a/spec/datadog/tracing/metadata/tagging_spec.rb b/spec/datadog/tracing/metadata/tagging_spec.rb index 113c9aaab7d..6ec3c633937 100644 --- a/spec/datadog/tracing/metadata/tagging_spec.rb +++ b/spec/datadog/tracing/metadata/tagging_spec.rb @@ -246,7 +246,10 @@ end it 'does not support it - it sets stringified nested hash as value' do - expect { set_tags }.to change { test_object.get_tag('user') }.from(nil).to('{"id"=>123}') + expected_tag = ['{"id"=>123}', '{"id" => 123}'] + expect { set_tags } + .to change { test_object.get_tag('user') } + .from(nil).to(satisfy { |tag| expected_tag.include?(tag) }) end end end diff --git a/spec/datadog/tracing/remote_spec.rb b/spec/datadog/tracing/remote_spec.rb index 5755a1903e3..48bae546b89 100644 --- a/spec/datadog/tracing/remote_spec.rb +++ b/spec/datadog/tracing/remote_spec.rb @@ -35,7 +35,7 @@ it 'sets errored apply state' do process_config expect(content.apply_state).to eq(3) - expect(content.apply_error).to match(/Error/) & match(/in process_config/) + expect(content.apply_error).to include('Error') & include('process_config') end end diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 33980773165..81f6e36379c 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -89,11 +89,17 @@ config.wait_timeout = 5 # default timeout for `wait_for(...)`, in seconds config.wait_delay = 0.01 # default retry delay for `wait_for(...)`, in seconds + # This hides the list of skipped/pending specs by default + config.pending_failure_output = :skip + if config.files_to_run.one? # Use the documentation formatter for detailed output, # unless a formatter has already been configured # (e.g. via a command-line flag). config.default_formatter = 'doc' + + # List skipped/pending specs + config.pending_failure_output = :full end config.before(:example, ractors: true) do