From d058202b60d838721c0ac4c4a7245de1b6dda25c Mon Sep 17 00:00:00 2001 From: Rob Scanlon Date: Thu, 4 Aug 2022 11:45:27 -0400 Subject: [PATCH] Release 036 (#233) * bump version. * Update changelog. --- CHANGELOG.md | 14 ++++++++++++++ Gemfile.lock | 16 ++++++++-------- lib/inferno/version.rb | 2 +- 3 files changed, 23 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c4b0b16b..ea7123f60 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +# 0.3.6 +* Improve logic for automatically opening failed tests after test run. +* Improve accessibility for touch screen users. +* Add suite-configurable links to the footer. +* Fix bug where suite options did not properly filter sub-groups. +* Display selected options in header, if applicable. +* Display selected options in report, if applicable. +* Implement input filtered based on selected option. +* Improve option selection page. +* Update http client to automatically follow redirects. +* Visually improve request/message count badges for large numbers. +* Allow presets to use erb templates to allow environment-specific values. +* Allow API users to leave session creation request body empty. + # 0.3.5 * Add initial UI and JSON API support for suite options. * Fix an issue which prevented users from selecting text in group item headers. diff --git a/Gemfile.lock b/Gemfile.lock index 3aad1aaf3..fc60975c7 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - inferno_core (0.3.5) + inferno_core (0.3.6) activesupport (~> 6.1) blueprinter (= 0.25.2) dotenv (~> 2.7) @@ -57,7 +57,7 @@ GEM docile (1.4.0) domain_name (0.5.20190701) unf (>= 0.0.5, < 1.0.0) - dotenv (2.7.6) + dotenv (2.8.1) dry-auto_inject (0.9.0) dry-container (>= 0.3.4) dry-configurable (0.12.0) @@ -66,10 +66,10 @@ GEM dry-container (0.8.0) concurrent-ruby (~> 1.0) dry-configurable (~> 0.1, >= 0.1.3) - dry-core (0.7.1) + dry-core (0.8.1) concurrent-ruby (~> 1.0) dry-equalizer (0.3.0) - dry-inflector (0.2.1) + dry-inflector (0.3.0) dry-logic (1.2.0) concurrent-ruby (~> 1.0) dry-core (~> 0.5, >= 0.5) @@ -176,11 +176,11 @@ GEM multipart-post (2.2.3) netrc (0.11.0) nio4r (2.5.8) - nokogiri (1.13.6-arm64-darwin) + nokogiri (1.13.8-arm64-darwin) racc (~> 1.4) - nokogiri (1.13.6-x86_64-darwin) + nokogiri (1.13.8-x86_64-darwin) racc (~> 1.4) - nokogiri (1.13.6-x86_64-linux) + nokogiri (1.13.8-x86_64-linux) racc (~> 1.4) oauth2 (1.4.10) faraday (>= 0.17.3, < 3.0) @@ -260,7 +260,7 @@ GEM simplecov_json_formatter (0.1.3) sqlite3 (1.4.4) thor (1.1.0) - tilt (2.0.10) + tilt (2.0.11) transproc (1.1.1) tzinfo (2.0.4) concurrent-ruby (~> 1.0) diff --git a/lib/inferno/version.rb b/lib/inferno/version.rb index b1617a570..f4a62b917 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.5'.freeze + VERSION = '0.3.6'.freeze end