Releases: rhythmagency/formulate
Release v3.5.3
Release v3.5.2
Since version 3.5.1, these changes have been made:
- Bugfix: View Submissions (see: issue #198) : This switches the View Submissions panel to use
umb-editor-view
instead ofumb-tabs
. Allowing users to scroll down correctly when many submissions are displayed. - Bugfix: Form Designer: avoid JavaScript error when client dependency framework manages the JavaScript.
Release v3.5.1
Since version 3.5.0, these changes have been made:
- Send Data to HubSpot The "Send Data" handler now has an option to set the transmission format to "HubSpot JSON". Set the method to "POST" and the URL to something like "https://api.hsforms.com/submissions/v3/integration/submit/some-number/some-guid-goes-here" (replacing "some-number" and "some-guid-goes-here" with the appropriate values for your form) and it should send the data to HubSpot in the JSON format expected by HubSpot. Make sure to also include the fields with their appropriate name as expected by HubSpot. Further info here: https://legacydocs.hubspot.com/docs/methods/forms/submit_form
Here's what the transmission format drop down now contains:
Release v3.5.0
Since version 3.4.5, these changes have been made:
- Multi-Step Markup Change Now, each step within a multi-step form with have a
<section>
tag wrapping all of the rows within it. This makes it easier to style each step when progressing from one step to another.
Release v3.4.5
Since version 3.4.4, these changes have been made:
- Fix Regex Validation Since version 3.4.0, regex validations weren't working on fields. This has since been corrected.
Release v3.4.4
Since version 3.4.3, these changes have been made:
- Fix Stored Data When using the "Store Data" handler, most fields were not being stored upon form submission (since version 3.4.0). This has been fixed.
Release v3.4.3
Since version 3.4.2, these changes have been made:
- Security Fix Integrated a security fix from Dependabot.
- Upload Field Changed the markup for the upload field so it's easier to style the focus state.
- Drop Down Field Changed the markup for the drop down field so it's easier to style the initial state (before a value is selected).
You can see an example of the drop down and upload field from Formulate Pro:
Note that the drop down font weight changes once a selection is made, and the upload field has a focus state.
Release v3.4.2
Since version 3.4.1, these changes have been made:
- Email Handler Fix If you were using recipient fields or picked fields, you would encounter an error when submitting the form. This has now been fixed. Thanks to @IceLynxs for the report.
Release v3.4.1
Since version 3.4.0, these changes have been made:
- Email Handler Fix Thanks to a quick fix from @sinkypars1885, the email handler no longer causes an error on form submission.
Release v3.4.0
Since version 3.3.6, these changes have been made:
- Refactoring The code base was refactored significantly to improve the code style. Thanks @jamiepollock!
- Fieldset Legends For the list field types (e.g., checkbox list, radio button list), they are now using a legend field within a fieldset in order to label the group of fields (rather than a label). This should improve accessibility.
Here is an example of a few fields using fieldset legends:
This makes it clear that the text is a label for the entire group of fields.