diff --git a/CHANGELOG.md b/CHANGELOG.md index 5db347d70..a422b8700 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Spina CMS Changelog +## 2.18 + +### 2.18.0 (January 10th, 2024) +* Added custom title for admin panel +* Added preview website button +* Hide navigations if none are present +* Removed importmap shims +* Fixed bugs for Rails 7.1 +* Fixed translations +* Updated gem dependencies + ## 2.17 ### 2.17.0 (October 6th, 2023) diff --git a/Gemfile.lock b/Gemfile.lock index 0abbcd47b..8b17fd970 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - spina (2.17.0) + spina (2.18.0) ancestry attr_json babosa @@ -104,12 +104,12 @@ GEM ancestry (4.3.3) activerecord (>= 5.2.6) ansi (1.5.0) - attr_json (2.2.0) + attr_json (2.3.0) activerecord (>= 6.0.0, < 7.2) babosa (2.0.0) base64 (0.2.0) - bcrypt (3.1.19) - bigdecimal (3.1.4) + bcrypt (3.1.20) + bigdecimal (3.1.5) breadcrumbs_on_rails (4.1.0) railties (>= 5.0) browser (5.3.1) @@ -144,14 +144,14 @@ GEM image_processing (1.12.2) mini_magick (>= 4.9.5, < 5) ruby-vips (>= 2.0.17, < 3) - importmap-rails (1.2.3) + importmap-rails (2.0.1) actionpack (>= 6.0.0) activesupport (>= 6.0.0) railties (>= 6.0.0) - io-console (0.6.0) - irb (1.9.0) + io-console (0.7.1) + irb (1.11.1) rdoc - reline (>= 0.3.8) + reline (>= 0.4.2) json (2.6.3) jsonapi-serializer (2.2.0) activesupport (>= 4.2) @@ -171,7 +171,7 @@ GEM addressable (~> 2.8) letter_opener (1.8.1) launchy (>= 2.2, < 3) - loofah (2.21.4) + loofah (2.22.0) crass (~> 1.0.2) nokogiri (>= 1.12.0) mail (2.8.1) @@ -197,17 +197,17 @@ GEM mocha (2.1.0) ruby2_keywords (>= 0.0.5) mutex_m (0.2.0) - net-imap (0.4.4) + net-imap (0.4.9.1) date net-protocol net-pop (0.1.2) net-protocol net-protocol (0.2.2) timeout - net-smtp (0.4.0) + net-smtp (0.4.0.1) net-protocol - nio4r (2.5.9) - nokogiri (1.15.4) + nio4r (2.7.0) + nokogiri (1.16.0) mini_portile2 (~> 2.8.2) racc (~> 1.4) pg (1.5.4) @@ -216,7 +216,7 @@ GEM method_source (~> 1.0) pry-rails (0.3.9) pry (>= 0.10.4) - psych (5.1.1.1) + psych (5.1.2) stringio public_suffix (5.0.3) puma (6.4.0) @@ -265,16 +265,16 @@ GEM thor (~> 1.0, >= 1.2.2) zeitwerk (~> 2.6) rake (13.1.0) - rdoc (6.6.0) + rdoc (6.6.2) psych (>= 4.0.0) regexp_parser (2.8.1) - reline (0.4.0) + reline (0.4.2) io-console (~> 0.5) request_store (1.5.1) rack (>= 1.4) rexml (3.2.6) ruby-progressbar (1.13.0) - ruby-vips (2.1.4) + ruby-vips (2.2.0) ffi (~> 1.12) ruby2_keywords (0.0.5) rubyzip (2.3.2) @@ -294,10 +294,10 @@ GEM actionpack (>= 5.2) activesupport (>= 5.2) sprockets (>= 3.0.0) - stimulus-rails (1.2.2) + stimulus-rails (1.3.3) railties (>= 6.0.0) - stringio (3.0.9) - tailwindcss-rails (2.0.32) + stringio (3.1.0) + tailwindcss-rails (2.2.1) railties (>= 6.0.0) thor (1.3.0) timeout (0.4.1) @@ -307,7 +307,7 @@ GEM railties (>= 6.0.0) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - view_component (3.7.0) + view_component (3.10.0) activesupport (>= 5.2.0, < 8.0) concurrent-ruby (~> 1.0) method_source (~> 1.0) diff --git a/lib/spina/version.rb b/lib/spina/version.rb index e06aca564..a5adbfa52 100644 --- a/lib/spina/version.rb +++ b/lib/spina/version.rb @@ -1,3 +1,3 @@ module Spina - VERSION = "2.17.0" + VERSION = "2.18.0" end