CHANGELOG.md in view_component-2.28.0 vs CHANGELOG.md in view_component-2.29.0
- old
+ new
@@ -1,8 +1,33 @@
# CHANGELOG
## main
+## 2.29.0
+
+* Allow Slot lambdas to share data from the parent component and allow chaining on the returned component.
+
+ *Sjors Baltus, Blake Williams*
+
+* Experimental: Add `ViewComponent::Translatable`
+ * `t` and `translate` now will look first into the sidecar YAML translations file.
+ * `helpers.t` and `I18n.t` still reference the global Rails translation files.
+ * `l` and `localize` will still reference the global Rails translation files.
+
+ *Elia Schito*
+
+* Fix rendering output of pass through slots when using HAML.
+
+ *Alex Robbin, Blake Williams*
+
+* Experimental: call `._sidecar_files` to fetch the sidecar files for a given list of extensions, e.g. passing `["yml", "yaml"]`.
+
+ *Elia Schito*
+
+* Fix bug where a single `jbuilder` template matched multiple template handlers.
+
+ *Niels Slot*
+
## 2.28.0
* Include SlotableV2 by default in Base. **Note:** It's no longer necessary to include `ViewComponent::SlotableV2` to use Slots.
*Joel Hawksley*