forme 1.12.0 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f9ee8a7a7efaf9ff59c55404e6c11aba0125cdf59972366b94aa3359b06c6c1f
4
- data.tar.gz: dd9f90ad552c827b66a3d8146f8933e5258b34ece1db5a8a9515ac9e2aeada44
3
+ metadata.gz: c2d1410426de24535a3e1734c9b6e050c7125e6c5837a1d5a3e400021ba4b17e
4
+ data.tar.gz: 4ce1754d622e0f87272257b70665fc2eb03c289f2ada6e9a54d444238b4a8095
5
5
  SHA512:
6
- metadata.gz: 5867cc14f49ea0a2419e4f7d30a518a8886753f11e4e6af46f7565106ef54869c9bf9d5ba691f7f08ee7fab5d729bb16e8b1463939dc043d7e91aeb5e8bf1f2e
7
- data.tar.gz: 25bf44d57e37ef994cab9a6c2bf532b4dddd209fff6b1542b21596e2cdbfa1e20a1ae04af9d2b4c0ad113f322c06fe1e8a662a4d2facd36439f2c1a45d2e4250
6
+ metadata.gz: 69699bc0f28300df39222a596e7e201e972c969d5562f9af12f641ab6d011fab2576ba547407623c7e39476fd451ede30ef6728c51a15f7ce26a4d3aeb341467
7
+ data.tar.gz: b12a69a0991e97fb665707bdc275b5329f26c7331d35292a315d54cfa45e3ed8a117cf64cea1d0e8df4493a080cc03782a3027111e339e4b08398200cf91b7ef
data/CHANGELOG CHANGED
@@ -1,3 +1,37 @@
1
+ === 2.0.0 (2021-11-30)
2
+
3
+ * Remove Tag#<< method (jeremyevans)
4
+
5
+ * Remove Form#_inputs method (jeremyevans)
6
+
7
+ * Deprecate forme/sinatra and Forme::Sinatra::ERB, switch to forme/erb and Forme::ERB::Helper (jeremyevans)
8
+
9
+ * Deprecate Form :hidden_tags option (jeremyevans)
10
+
11
+ * Add Form#post? for whether the form will submit via POST (jeremyevans)
12
+
13
+ * Add Form#form_tag_attributes for getting the attributes used for the form tag (jeremyevans)
14
+
15
+ * Add :before and :after Form options, as an alternative way to implement hooks (jeremyevans)
16
+
17
+ * Passing a callable as the child of a tag should now not call methods that will modify the related form (such as Form#tag) (jeremyevans)
18
+
19
+ * Change API for _forme_form_options private method used in template integrations (jeremyevans)
20
+
21
+ * Remove Form#{nesting,tag_,raw_output,emit} (jeremyevans)
22
+
23
+ * Make Form#{form,tag,input,inputs} return HTML string (jeremyevans)
24
+
25
+ * Refactor internals, switch template integration to use delegation instead of inheritance (jeremyevans)
26
+
27
+ * Add Roda forme_erubi_capture plugin to support erubi/capture_end <%|= form do %> <%| end %> tags (jeremyevans)
28
+
29
+ * Make bs3 formatter automatically setup aria-invalid and aria-describedby attributes for errors (waiting-for-dev) (#96)
30
+
31
+ * Make bs3 formatter handle form-level :errors key (waiting-for-dev) (#96)
32
+
33
+ * Drop support for Ruby 1.8 (jeremyevans)
34
+
1
35
  === 1.12.0 (2021-08-25)
2
36
 
3
37
  * Make forme_set Sequel plugin handle frozen Sequel::Model instances (jeremyevans)