vident 2.0.0 → 2.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -0
- data/lib/vident/version.rb +1 -1
- data/lib/vident.rb +4 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 174865fed5f1a8edc71ef641af56b0656c97ab66dfe3dcc1c7b4eea996a7e31d
|
|
4
|
+
data.tar.gz: b581f504c154b4a732702f8cddbe21d020dff12450a11b3880f0f11b13236c4e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d3602b080034a184bcbb663602ff6d8fff95ef1cdbe855393b2d2d875f0d3485415237008818f4fa336da33c4587a7f57e52bcef6542d09a2f153f468bb1a7c9
|
|
7
|
+
data.tar.gz: f133d2034fbcbdf31429696469f7127a8d38f765e174f75857abd9c18f3f1e8da6156534514b84bdddbe436c590d2c927509bd29a2023fe6a53c6d034c81db96
|
data/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,13 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
|
|
6
6
|
and this project adheres to [Semantic Versioning](http://semver.org/).
|
|
7
7
|
|
|
8
8
|
|
|
9
|
+
## [2.0.1] - 2026-04-24
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
|
|
13
|
+
- Base gem no longer fails to load when installed without the adapter gems — adapter requires moved to their own entry points (`lib/vident-phlex.rb`, `lib/vident-view_component.rb`) (#29).
|
|
14
|
+
|
|
15
|
+
|
|
9
16
|
## [2.0.0] - 2026-04-24
|
|
10
17
|
|
|
11
18
|
Vident 2.0 is a ground-up rearchitecture of the DSL, attribute resolution, and composition model. The public shape of `stimulus do ... end`, `root_element`, `child_element`, outlets, props, and the `stimulus_*:` prop/kwarg API is preserved for common cases, but several internals and a handful of edge-case behaviours changed. See `doc/reviews/v1-gotchas.md` for the full list of fixed gotchas; the highlights are below.
|
data/lib/vident/version.rb
CHANGED
data/lib/vident.rb
CHANGED
|
@@ -54,5 +54,7 @@ require "vident/caching"
|
|
|
54
54
|
|
|
55
55
|
require "vident/component"
|
|
56
56
|
|
|
57
|
-
|
|
58
|
-
|
|
57
|
+
# Adapter modules (`vident/phlex`, `vident/view_component`) ship in their own
|
|
58
|
+
# gems and are loaded by their own entry points (`lib/vident-phlex.rb`,
|
|
59
|
+
# `lib/vident-view_component.rb`). Do not require them unconditionally here —
|
|
60
|
+
# they only exist when the corresponding adapter gem is installed.
|