inline_forms 7.13.16 → 7.13.17
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/inline_forms/version.rb +1 -1
- 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: e6d9090a4647004676dcd2301ae2fe4e4cf6be16bbd64cb88f84e3dc3aa3bcc7
|
|
4
|
+
data.tar.gz: 629d640307657cac5175ea3687c8ee429ec97f31b7e1aff7b8d1831de856d2b3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a687a847ca5160a286833c3d31e30a4252575835caffe22685d6d28b068630df17fc80c46ddb1191505556b40f38d3b3744a034c0ca27778070e014ce184aad4
|
|
7
|
+
data.tar.gz: 25ea25595e6daedacc3af36bdbf7bc9ad1b0c4c71f841ff77e092f5e59d1380f025a3754c95df9e5e84a23cbbfe93e9462f9467b6a3f7ee41886c3c93d6b584b
|
data/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,13 @@ All notable changes to this project are documented in this file.
|
|
|
4
4
|
|
|
5
5
|
## [Unreleased]
|
|
6
6
|
|
|
7
|
+
## [7.13.17] - 2026-05-21
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- **Misleading version banner during `inline_forms create`:** the opening line ("Creating MyApp with inline_forms vX...") used `Gem::Specification.find_by_name("inline_forms").version`, i.e. whatever happened to be in the Creator's own gemset, which can differ from what Bundler then resolves for the generated app (since the Gemfile pins `~> 7`). The banner now reports the constraint (`inline_forms ~> 7`) instead of an exact version.
|
|
12
|
+
- **Install summary now reads the actual locked versions** of `inline_forms` and `validation_hints` from the generated app's `Gemfile.lock`, so the post-create summary line reflects what's truly in the app (and surfaces drift if the Creator's gemset and the app's gemset disagree).
|
|
13
|
+
|
|
7
14
|
## [7.13.16] - 2026-05-21
|
|
8
15
|
|
|
9
16
|
### Fixed
|
data/lib/inline_forms/version.rb
CHANGED