From e5dd3cb2d538515aaae320c1ddcb063d386aef2c Mon Sep 17 00:00:00 2001 From: Robert Passas <35311744+rpassas@users.noreply.github.com> Date: Fri, 27 Sep 2024 12:13:11 -0400 Subject: [PATCH] Release 0443 (#533) * version bump * changelog --- CHANGELOG.md | 5 ++++- Gemfile.lock | 8 ++++---- lib/inferno/version.rb | 2 +- 3 files changed, 9 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e26785ac7..d66961e7f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,11 @@ +## 0.4.43 +* patch undefined method for nil on validator 500 response by @Shaumik-Ashraf in https://github.com/inferno-framework/inferno-core/pull/530 +* FI-3172: Fix validator sessions by @Jammjammjamm in https://github.com/inferno-framework/inferno-core/pull/531 + ## 0.4.42 * FI-2887 Remove banner info from readme because that belongs in the docs site. by @arscan in https://github.com/inferno-framework/inferno-core/pull/527 * FI-3112: Fixed JWKS Template Path Used in Unit Tests by @vanessuniq in https://github.com/inferno-framework/inferno-core/pull/526 - ## 0.4.41 * Include JSON files in gem package by @vanessuniq in https://github.com/inferno-framework/inferno-core/pull/524 diff --git a/Gemfile.lock b/Gemfile.lock index ddd84def2..c3a5cbb86 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - inferno_core (0.4.42) + inferno_core (0.4.43) activesupport (~> 6.1.7.5) base62-rb (= 0.3.1) blueprinter (= 0.25.2) @@ -88,7 +88,7 @@ GEM zeitwerk (~> 2.6) factory_bot (6.2.0) activesupport (>= 5.0.0) - faraday (1.10.3) + faraday (1.10.4) faraday-em_http (~> 1.0) faraday-em_synchrony (~> 1.0) faraday-excon (~> 1.1) @@ -111,7 +111,7 @@ GEM faraday-patron (1.0.0) faraday-rack (1.0.0) faraday-retry (1.0.3) - faraday_middleware (1.2.0) + faraday_middleware (1.2.1) faraday (~> 1.0) fhir_client (5.0.3) activesupport (>= 3) @@ -163,7 +163,7 @@ GEM io-console (0.6.0) irb (1.6.2) reline (>= 0.3.0) - jwt (2.9.0) + jwt (2.9.1) base64 kramdown (2.4.0) rexml diff --git a/lib/inferno/version.rb b/lib/inferno/version.rb index 79a995836..e9470c5e1 100644 --- a/lib/inferno/version.rb +++ b/lib/inferno/version.rb @@ -1,4 +1,4 @@ module Inferno # Standard patterns for gem versions: https://guides.rubygems.org/patterns/ - VERSION = '0.4.42'.freeze + VERSION = '0.4.43'.freeze end