Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v0.5.0 #555

Merged
merged 2 commits into from
Nov 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 9 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 0.5.0
* FI-3358: Check for Duplicate Ids in In-Memory Repositories by @vanessuniq in https://github.com/inferno-framework/inferno-core/pull/551
* FI-3223: Ensure Request Entity Verb Is Always Downcased by @vanessuniq in https://github.com/inferno-framework/inferno-core/pull/554
## 0.4.44
* FI-2937 inferno execute by @Shaumik-Ashraf in https://github.com/inferno-framework/inferno-core/pull/517
* FI-3104: Update React + other packages by @AlyssaWang in https://github.com/inferno-framework/inferno-core/pull/529
Expand Down Expand Up @@ -371,15 +374,15 @@ Aligning changes with published gem - the previously published gem does not incl

# 0.3.4

* Incorporate UI changes to improve info, warning, and error test message readability.
* Update to support running locally on M1 MacBooks.
* Update gem dependencies.
* Add deployment documentation - SSRF protection and SSL, database, and path
* Incorporate UI changes to improve info, warning, and error test message readability.
* Update to support running locally on M1 MacBooks.
* Update gem dependencies.
* Add deployment documentation - SSRF protection and SSL, database, and path
configuration.
* Include links to Inferno's github repository and issues page in testing view.
* Improve frontend storage.
* Implement backend support for suite options: this allows test writers to specify which
tests in a suite are executed and which validator to use during execution.
* Implement backend support for suite options: this allows test writers to specify which
tests in a suite are executed and which validator to use during execution.
* Add touchscreen support.

# 0.3.3
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
inferno_core (0.4.44)
inferno_core (0.5.0)
activesupport (~> 6.1.7.5)
base62-rb (= 0.3.1)
blueprinter (= 0.25.2)
Expand Down
2 changes: 1 addition & 1 deletion lib/inferno/version.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module Inferno
# Standard patterns for gem versions: https://guides.rubygems.org/patterns/
VERSION = '0.4.44'.freeze
VERSION = '0.5.0'.freeze
end
Loading