From 66f65d45be26c85a0453c82d981ec037d7a528c9 Mon Sep 17 00:00:00 2001 From: Kayla Reopelle Date: Wed, 4 Dec 2024 13:49:34 -0800 Subject: [PATCH] chore: Update http example gems The Faraday and Sinatra versions were very out of date. Dependabot noticed the Sinatra version had known vulnerabilities. This updates the Gemfile. The example has the same output. --- examples/http/Gemfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/examples/http/Gemfile b/examples/http/Gemfile index 5cc31fb399..2992148952 100644 --- a/examples/http/Gemfile +++ b/examples/http/Gemfile @@ -2,9 +2,10 @@ source "https://rubygems.org" -gem "faraday", "~> 0.16.1" +gem "faraday", "~> 2.0" gem "opentelemetry-api" gem "opentelemetry-common" gem "opentelemetry-sdk" -gem "sinatra", "~> 2.0" +gem "sinatra", "~> 4.1" gem "puma" +gem "rackup"