From 147cbde748bd47411e6efa5d00efdac9d3484159 Mon Sep 17 00:00:00 2001 From: Stephen MacVicar Date: Tue, 11 Oct 2022 10:20:10 -0400 Subject: [PATCH] Release 0.3.12 (#269) * bump version * update changelog * fix changelog typo --- CHANGELOG.md | 11 +++++++++++ Gemfile.lock | 10 +++++----- lib/inferno/version.rb | 2 +- 3 files changed, 17 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e57553986..8040296f0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +# 0.3.12 +* Fix the ordering of requests in the UI. +* Fix a memory leak. +* Fix the order in which `.env*` files are loaded. +* Add the ability to copy request urls from the Inferno UI. +* Add a toggle to the report view to show/hide messages and requests. +* Reduce the size of report pdfs. +* Add commands to the CLI to start inferno and required background services. +* Improve the Inferno UI for mobile devices. +* Various other UI improvements. + # 0.3.11 * Update fhir_models to address an issue where models were being instantiated slightly differently depending on whether they were instantiated from a string diff --git a/Gemfile.lock b/Gemfile.lock index cc2501568..3a7f45788 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - inferno_core (0.3.11) + inferno_core (0.3.12) activesupport (~> 6.1) blueprinter (= 0.25.2) dotenv (~> 2.7) @@ -45,7 +45,7 @@ GEM simplecov (>= 0.15, < 0.22) coderay (1.1.3) concurrent-ruby (1.1.10) - connection_pool (2.2.5) + connection_pool (2.3.0) crack (0.4.5) rexml database_cleaner-core (2.0.1) @@ -182,12 +182,12 @@ GEM racc (~> 1.4) nokogiri (1.13.8-x86_64-linux) racc (~> 1.4) - oauth2 (1.4.10) + oauth2 (1.4.11) faraday (>= 0.17.3, < 3.0) jwt (>= 1.0, < 3.0) multi_json (~> 1.3) multi_xml (~> 0.5) - rack (>= 1.2, < 3) + rack (>= 1.2, < 4) oj (3.11.0) parallel (1.21.0) parser (3.1.0.0) @@ -248,7 +248,7 @@ GEM ruby-progressbar (1.11.0) ruby2_keywords (0.0.5) sequel (5.42.0) - sidekiq (6.5.6) + sidekiq (6.5.7) connection_pool (>= 2.2.5) rack (~> 2.0) redis (>= 4.5.0, < 5) diff --git a/lib/inferno/version.rb b/lib/inferno/version.rb index 9b1e630cf..4330d11ac 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.3.11'.freeze + VERSION = '0.3.12'.freeze end