From 14a57c25d29de7c45a4c3eab4dcb4ec040f7a5cb Mon Sep 17 00:00:00 2001 From: Robert Passas <35311744+rpassas@users.noreply.github.com> Date: Tue, 25 Jun 2024 13:40:19 -0400 Subject: [PATCH] Release v0.4.39 (#510) * version bump * change log --- CHANGELOG.md | 12 ++++++++++++ Gemfile.lock | 14 +++++++------- lib/inferno/version.rb | 2 +- 3 files changed, 20 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 764617ccd..8923ca30b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +## 0.4.39 +* FI-2836: Fix double requests from suite endpoints by @Jammjammjamm in https://github.com/inferno-framework/inferno-core/pull/505 +* Bump braces from 3.0.2 to 3.0.3 by @dependabot in https://github.com/inferno-framework/inferno-core/pull/506 +* Bump ws from 7.5.9 to 7.5.10 by @dependabot in https://github.com/inferno-framework/inferno-core/pull/507 +* Bump ws from 8.16.0 to 8.17.1 by @dependabot in https://github.com/inferno-framework/inferno-core/pull/508 +* Fix typo 'requests' in inferno template by @Shaumik-Ashraf in https://github.com/inferno-framework/inferno-core/pull/509 +* FI-2729: Remove footer mobile menu if empty by @AlyssaWang in https://github.com/inferno-framework/inferno-core/pull/494 +* FI-2686: Automatically resize textareas by @AlyssaWang in https://github.com/inferno-framework/inferno-core/pull/491 +* Make `bundle exec inferno start` work by @Shaumik-Ashraf in https://github.com/inferno-framework/inferno-core/pull/502 +* FI-2787: AuthInfo input skeleton by @Jammjammjamm in https://github.com/inferno-framework/inferno-core/pull/503 +* Remove ReactMarkdown in Inputs/Outputs by @jhlee-mitre in https://github.com/inferno-framework/inferno-core/pull/504 + ## 0.4.38 * FI-2765: Automatically run migrations by @Jammjammjamm in https://github.com/inferno-framework/inferno-core/pull/496 * FI-2753: Add hover effect to request details by @AlyssaWang in https://github.com/inferno-framework/inferno-core/pull/495 diff --git a/Gemfile.lock b/Gemfile.lock index c6b1207e0..17972c736 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - inferno_core (0.4.38) + inferno_core (0.4.39) activesupport (~> 6.1.7.5) base62-rb (= 0.3.1) blueprinter (= 0.25.2) @@ -163,14 +163,14 @@ GEM io-console (0.6.0) irb (1.6.2) reline (>= 0.3.0) - jwt (2.8.1) + jwt (2.8.2) base64 kramdown (2.4.0) rexml method_source (1.0.0) mime-types (3.5.2) mime-types-data (~> 3.2015) - mime-types-data (3.2024.0507) + mime-types-data (3.2024.0604) minitest (5.18.0) multi_json (1.15.0) multi_xml (0.7.1) @@ -183,11 +183,11 @@ GEM mustermann (= 1.1.2) netrc (0.11.0) nio4r (2.7.3) - nokogiri (1.16.5-arm64-darwin) + nokogiri (1.16.6-arm64-darwin) racc (~> 1.4) - nokogiri (1.16.5-x86_64-darwin) + nokogiri (1.16.6-x86_64-darwin) racc (~> 1.4) - nokogiri (1.16.5-x86_64-linux) + nokogiri (1.16.6-x86_64-linux) racc (~> 1.4) oauth2 (1.4.11) faraday (>= 0.17.3, < 3.0) @@ -228,7 +228,7 @@ GEM netrc (~> 0.8) rexml (3.2.8) strscan (>= 3.0.9) - rouge (4.2.1) + rouge (4.3.0) rspec (3.11.0) rspec-core (~> 3.11.0) rspec-expectations (~> 3.11.0) diff --git a/lib/inferno/version.rb b/lib/inferno/version.rb index 0067950a3..e5c0c28bf 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.38'.freeze + VERSION = '0.4.39'.freeze end