From 27fb2cf925b57cd46305820c4b439d283935c607 Mon Sep 17 00:00:00 2001 From: Stephen MacVicar Date: Mon, 29 Aug 2022 12:53:51 -0400 Subject: [PATCH] Release 0.3.10 (#251) * bump version * update changelog --- CHANGELOG.md | 4 ++++ Gemfile.lock | 13 ++++++++----- lib/inferno/version.rb | 2 +- 3 files changed, 13 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 22a77eda6..98575fdfa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.3.10 +* Fix a performance issue when creating a test run for a large test suites. +* Improve the test details UI. + # 0.3.9 * Improve options selection UI background color when a banner is used. * Add suite_summary field that is displayed on suite options/landing page. diff --git a/Gemfile.lock b/Gemfile.lock index d4bb1c58e..6e6639d31 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - inferno_core (0.3.9) + inferno_core (0.3.10) activesupport (~> 6.1) blueprinter (= 0.25.2) dotenv (~> 2.7) @@ -94,7 +94,7 @@ GEM dry-logic (~> 1.0, >= 1.0.2) factory_bot (6.2.0) activesupport (>= 5.0.0) - faraday (1.10.1) + faraday (1.10.2) faraday-em_http (~> 1.0) faraday-em_synchrony (~> 1.0) faraday-excon (~> 1.1) @@ -165,7 +165,7 @@ GEM i18n (1.10.0) concurrent-ruby (~> 1.0) ice_nine (0.11.2) - jwt (2.4.1) + jwt (2.5.0) method_source (1.0.0) mime-types (3.4.1) mime-types-data (~> 3.2015) @@ -199,7 +199,7 @@ GEM byebug (~> 11.0) pry (~> 0.13.0) public_suffix (4.0.7) - puma (5.6.4) + puma (5.6.5) nio4r (~> 2.0) racc (1.6.0) rack (2.2.3.1) @@ -207,7 +207,10 @@ GEM rack (>= 1.0, < 3) rainbow (3.1.1) rake (13.0.6) - redis (4.7.1) + redis (5.0.1) + redis-client (~> 0.7) + redis-client (0.7.1) + connection_pool regexp_parser (2.2.0) rest-client (2.1.0) http-accept (>= 1.7.0, < 2.0) diff --git a/lib/inferno/version.rb b/lib/inferno/version.rb index e1fd32f2e..798de8cda 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.9'.freeze + VERSION = '0.3.10'.freeze end