Skip to content
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
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## 1.4.0
* Container configuration updates as per recommendations by @arunkumarhk in https://github.com/inferno-framework/inferno-core/pull/787
* Add countdown for wait modals, with error message when modal expires by @ljtucker in https://github.com/inferno-framework/inferno-core/pull/786
* Added Attestation banner by @ljtucker in https://github.com/inferno-framework/inferno-core/pull/788
* ID-158: Frontend dependency updates by @karlnaden in https://github.com/inferno-framework/inferno-core/pull/789
* ID-163: update sidekiq by @karlnaden in https://github.com/inferno-framework/inferno-core/pull/793
* ID-162: Make accordion summary text selectable by @karlnaden in https://github.com/inferno-framework/inferno-core/pull/792
* ID-161: puma dependency update by @karlnaden in https://github.com/inferno-framework/inferno-core/pull/791
* ID-159: Update the docs publishing pipeline by @karlnaden in https://github.com/inferno-framework/inferno-core/pull/790

## 1.3.1
* Allow checkbox inputs to be suppressed by the enable_when feature by @karlnaden in https://github.com/inferno-framework/inferno-core/pull/784

Expand Down
8 changes: 5 additions & 3 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
inferno_core (1.3.1)
inferno_core (1.4.0)
activesupport (~> 7.2.3.1)
base62-rb (= 0.3.1)
blueprinter (= 0.25.2)
Expand All @@ -22,7 +22,7 @@ PATH
kramdown (~> 2.5.2)
kramdown-parser-gfm (~> 1.1.0)
mutex_m (~> 0.3.0)
oj (= 3.11.0)
oj (~> 3.17, >= 3.17.3)
pastel (~> 0.8.0)
pry
pry-byebug
Expand Down Expand Up @@ -226,7 +226,9 @@ GEM
rack (>= 1.2, < 4)
snaky_hash (~> 2.0, >= 2.0.6)
version_gem (~> 1.1, >= 1.1.11)
oj (3.11.0)
oj (3.17.3)
bigdecimal (>= 3.0)
ostruct (>= 0.2)
ostruct (0.6.0)
parallel (1.26.3)
parser (3.3.5.0)
Expand Down
2 changes: 1 addition & 1 deletion inferno_core.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Gem::Specification.new do |spec|
spec.add_dependency 'kramdown', '~> 2.5.2'
spec.add_dependency 'kramdown-parser-gfm', '~> 1.1.0'
spec.add_dependency 'mutex_m', '~> 0.3.0'
spec.add_dependency 'oj', '3.11.0'
spec.add_dependency 'oj', '~> 3.17', '>= 3.17.3'
spec.add_dependency 'pastel', '~> 0.8.0'
spec.add_dependency 'pry'
spec.add_dependency 'pry-byebug'
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 = '1.3.1'.freeze
VERSION = '1.4.0'.freeze
end
Loading