From 5bd774923f10ff8efb4a1f1a20419082fa550a6a Mon Sep 17 00:00:00 2001 From: Kayla Reopelle <87386821+kaylareopelle@users.noreply.github.com> Date: Wed, 4 Dec 2024 14:44:55 -0800 Subject: [PATCH] chore: Update http example gems (#1772) 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 5cc31fb39..299214895 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"