diff --git a/CHANGELOG.md b/CHANGELOG.md index 1233a61b1..2b5917db8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.4.13 +* Fix a bug which caused an error to appear in the UI while entering inputs into + an input dialog which contains an oauth_credentials input. + # 0.4.12 * Add a checkbox input type. * Update the UI to display input descriptions for radio button inputs. diff --git a/Gemfile.lock b/Gemfile.lock index 2bd780d8f..8550eb059 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - inferno_core (0.4.12) + inferno_core (0.4.13) activesupport (~> 6.1) base62-rb (= 0.3.1) blueprinter (= 0.25.2) @@ -30,7 +30,7 @@ PATH GEM remote: https://rubygems.org/ specs: - activesupport (6.1.7.2) + activesupport (6.1.7.3) concurrent-ruby (~> 1.0, >= 1.0.2) i18n (>= 1.6, < 2) minitest (>= 5.1) @@ -48,7 +48,7 @@ GEM codecov (0.5.2) simplecov (>= 0.15, < 0.22) coderay (1.1.3) - concurrent-ruby (1.2.0) + concurrent-ruby (1.2.2) connection_pool (2.4.0) crack (0.4.5) rexml @@ -181,7 +181,7 @@ GEM mime-types (3.4.1) mime-types-data (~> 3.2015) mime-types-data (3.2023.0218.1) - minitest (5.17.0) + minitest (5.18.0) multi_json (1.15.0) multi_xml (0.6.0) multipart-post (2.3.0) @@ -192,11 +192,11 @@ GEM mustermann (= 1.1.2) netrc (0.11.0) nio4r (2.5.9) - nokogiri (1.14.2-arm64-darwin) + nokogiri (1.14.3-arm64-darwin) racc (~> 1.4) - nokogiri (1.14.2-x86_64-darwin) + nokogiri (1.14.3-x86_64-darwin) racc (~> 1.4) - nokogiri (1.14.2-x86_64-linux) + nokogiri (1.14.3-x86_64-linux) racc (~> 1.4) oauth2 (1.4.11) faraday (>= 0.17.3, < 3.0) @@ -220,7 +220,7 @@ GEM puma (5.6.5) nio4r (~> 2.0) racc (1.6.2) - rack (2.2.6.2) + rack (2.2.6.4) rack-test (1.1.0) rack (>= 1.0, < 3) rainbow (3.1.1) @@ -301,7 +301,7 @@ GEM tty-color (~> 0.5) tty-screen (~> 0.8) tty-screen (0.8.1) - tzinfo (2.0.5) + tzinfo (2.0.6) concurrent-ruby (~> 1.0) unf (0.1.4) unf_ext @@ -319,7 +319,7 @@ GEM backports (>= 3.18) rainbow yard - zeitwerk (2.6.6) + zeitwerk (2.6.7) PLATFORMS arm64-darwin-21 diff --git a/docs/Gemfile.lock b/docs/Gemfile.lock index f149e6924..e5cf68001 100644 --- a/docs/Gemfile.lock +++ b/docs/Gemfile.lock @@ -14,8 +14,8 @@ GEM execjs coffee-script-source (1.11.1) colorator (1.1.0) - commonmarker (0.23.7) - concurrent-ruby (1.2.0) + commonmarker (0.23.9) + concurrent-ruby (1.2.2) dnsruby (1.61.9) simpleidn (~> 0.1) em-websocket (0.5.3) @@ -214,10 +214,10 @@ GEM jekyll (>= 3.5, < 5.0) jekyll-feed (~> 0.9) jekyll-seo-tag (~> 2.1) - minitest (5.17.0) - nokogiri (1.14.0-arm64-darwin) + minitest (5.18.0) + nokogiri (1.14.3-arm64-darwin) racc (~> 1.4) - nokogiri (1.14.0-x86_64-darwin) + nokogiri (1.14.3-x86_64-darwin) racc (~> 1.4) octokit (4.25.1) faraday (>= 1, < 3) @@ -250,14 +250,14 @@ GEM thread_safe (0.3.6) typhoeus (1.4.0) ethon (>= 0.9.0) - tzinfo (1.2.10) + tzinfo (1.2.11) thread_safe (~> 0.1) unf (0.1.4) unf_ext unf_ext (0.0.8.2) unicode-display_width (1.8.0) webrick (1.7.0) - zeitwerk (2.6.6) + zeitwerk (2.6.7) PLATFORMS arm64-darwin-21 diff --git a/lib/inferno/version.rb b/lib/inferno/version.rb index d74dbbcb6..a83e6b5b6 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.12'.freeze + VERSION = '0.4.13'.freeze end