From 234aaabba071028517857743396fee62683f7a37 Mon Sep 17 00:00:00 2001 From: Brian Knoles Date: Fri, 29 Nov 2024 15:39:02 -0500 Subject: [PATCH] Bump to 3.5.0 --- CHANGELOG.md | 11 +++++++++++ lib/inertia_rails/version.rb | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a9bc0d3..169e5877 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [3.5.0] - 2024-11-29 + +* Add Algolia search for docs (#151, @skryukov) +* Add support for Always props (#152, @skryukov) +* Add support for :except in partial reloads (#152, @skryukov) +* CI fixes (#156, @bknoles) +* Support dot notation for :only partial reloads (#163, @bknoles) +* Avoid some monkey patching (#164, @adrianpacala) +* Upstream generators from inertia_rails-contrib (#158, @skryukov) +* Raise a deprecation warning instead of an exception if you pass a non-hashable to inertia errors (#168, @skryukov) + ## [3.4.0] - 2024-11-02 * Inertia Rails documentation (@skryukov) diff --git a/lib/inertia_rails/version.rb b/lib/inertia_rails/version.rb index fbc1213f..b4b6c2ba 100644 --- a/lib/inertia_rails/version.rb +++ b/lib/inertia_rails/version.rb @@ -1,3 +1,3 @@ module InertiaRails - VERSION = "3.4.0" + VERSION = "3.5.0" end