Skip to content

Commit

Permalink
Release 0.2.0.rc1 (#117)
Browse files Browse the repository at this point in the history
* update changelog and version for 0.2.0.rc1

* bundle install
  • Loading branch information
Jammjammjamm authored Feb 25, 2022
1 parent 21c9a05 commit 691b1b1
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 8 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
# 0.2.0.rc1

* **Breaking Change:** Support hosting inferno on a non-root path. To support
hosting inferno at a non-root path, it was necessary to change how inferno's
static assets are being served. Any test kit upgrading to use version 0.2.0 or
later of Inferno Core will need to replace `config.ru` with [the updated
`config.ru` in the inferno
template](https://raw.githubusercontent.com/inferno-framework/inferno-template/main/config.ru).
* Fix a bug which prevented individual tests from running.
* Add `version` field to test suites.
* Ui improvements.
* Retry database connections at startup.
* Support loading external test kits when developing Inferno Core.
* Add the ability to check test suite configuration. Currently only error
messages are displayed in the UI.
* Add short identifiers to all tests in a test suite.
* Update the UI so that any groups marked `run_as_group` are displayed with all
of their children, rather than requiring navigating into each child
separately.
* Add a report view.
* Display Inferno Core and test kit versions in the UI.
* Support preset inputs.

# 0.1.3

* Fix a bug where `oauth_credentials` inputs were not locked when they should
Expand Down
14 changes: 7 additions & 7 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
inferno_core (0.1.3)
inferno_core (0.2.0.rc1)
activesupport (~> 6.1)
blueprinter (= 0.25.2)
dotenv (~> 2.7)
Expand Down Expand Up @@ -92,7 +92,7 @@ GEM
dry-logic (~> 1.0, >= 1.0.2)
factory_bot (6.2.0)
activesupport (>= 5.0.0)
faraday (1.9.3)
faraday (1.10.0)
faraday-em_http (~> 1.0)
faraday-em_synchrony (~> 1.0)
faraday-excon (~> 1.1)
Expand Down Expand Up @@ -172,12 +172,12 @@ GEM
multipart-post (2.1.1)
netrc (0.11.0)
nio4r (2.5.8)
nokogiri (1.13.1-x86_64-darwin)
nokogiri (1.13.3-x86_64-darwin)
racc (~> 1.4)
nokogiri (1.13.1-x86_64-linux)
nokogiri (1.13.3-x86_64-linux)
racc (~> 1.4)
oauth2 (1.4.7)
faraday (>= 0.8, < 2.0)
oauth2 (1.4.9)
faraday (>= 0.17.3, < 3.0)
jwt (>= 1.0, < 3.0)
multi_json (~> 1.3)
multi_xml (~> 0.5)
Expand All @@ -193,7 +193,7 @@ GEM
byebug (~> 11.0)
pry (~> 0.13.0)
public_suffix (4.0.6)
puma (5.6.1)
puma (5.6.2)
nio4r (~> 2.0)
racc (1.6.0)
rack (2.2.3)
Expand Down
2 changes: 1 addition & 1 deletion lib/inferno/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Inferno
VERSION = '0.1.3'.freeze
VERSION = '0.2.0.rc1'.freeze
end

0 comments on commit 691b1b1

Please sign in to comment.