Skip to content

Commit 7a853fa

Browse files
authored
Merge pull request #570 from WebDevStudios/chore/prep-release-1.12.0
Chore/prep release 1.12.0
2 parents 8d0a1ce + d6f41fd commit 7a853fa

6 files changed

+49
-78
lines changed

CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,33 @@
1+
= 1.11.0 =
2+
* Updated: New admin styling to update the overall look and feel of the plugin in the WordPress admin.
3+
* Updated: Amend honeypot field input for accessibility purposes.
4+
* Added: Plugin setting to disable the loading on Constant Contact plugin CSS on the frontend.
5+
* Added: Native browser validation for phone number (tel) field input type.
6+
* Fixed: Amended admin notification for Bad Request results.
7+
8+
= 1.10.1 =
9+
* Fixed: Removed accidental extra parentheses on a function call.
10+
11+
= 1.10.0 =
12+
* Added: Toggle to our Forms Block to display Form title or not.
13+
* Added: Support for displaying a form in Beaver Builder.
14+
* Added: Support for displaying a form in Elementor.
15+
* Fixed: PHP Notices about usage of deprecated functions.
16+
* Updated: Touched up styles for the Constant Contact Forms Block.
17+
18+
= 1.9.1 =
19+
* Fixed: Removing duplicate IDs on form submit button.
20+
* Fixed: Preventing `Bad Request` request errors from rendering an admin notice.
21+
* Fixed: Various other admin and front-end fixes.
22+
23+
= 1.9.0 =
24+
* Added: Ability for site owners to multiple lists for users to choose which to sign up for.
25+
* Fixed: Issues around enabling list signup on user registration.
26+
* Fixed: Unintended markup in email notification text.
27+
* Fixed: Inappropriate or unneeded markup around hidden fields.
28+
* Updated: Max length values for first/last name fields.
29+
* Updated: Deprecated some functions in order to get consistent naming across all our code.
30+
131
= 1.8.8 =
232
* Updated: Added extra security output escaping of custom input values
333

constant-contact-forms.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* Plugin Name: Constant Contact Forms for WordPress
1313
* Plugin URI: https://www.constantcontact.com
1414
* Description: Be a better marketer. All it takes is Constant Contact email marketing.
15-
* Version: 1.11.0
15+
* Version: 1.12.0
1616
* Author: Constant Contact
1717
* Author URI: https://www.constantcontact.com/index?pn=miwordpress
1818
* License: GPLv3
@@ -72,7 +72,7 @@ class Constant_Contact {
7272
* @since 1.0.0
7373
* @var string
7474
*/
75-
const VERSION = '1.11.0';
75+
const VERSION = '1.12.0';
7676

7777
/**
7878
* URL of plugin directory.

includes/class-builder-fields.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -819,7 +819,7 @@ public function render_reset_css_button( $field ) {
819819
* Returns available lists that are available locally.
820820
*
821821
* @author Scott Anderson <scott.anderson@webdevstudios.com>
822-
* @since NEXT
822+
* @since 1.12.0
823823
*
824824
* @return array
825825
*/

includes/class-settings.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1076,7 +1076,7 @@ private function get_default_spam_error() {
10761076
* Returns formated list of available lists during opt-in.
10771077
*
10781078
* @author Scott Anderson <scott.anderson@webdevstudios.com>
1079-
* @since NEXT
1079+
* @since 1.12.0
10801080
*
10811081
* @return array
10821082
*/

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "constant-contact-forms",
3-
"version": "1.11.0",
3+
"version": "1.12.0",
44
"description": "",
55
"main": "gulpfile.js",
66
"engines": {

readme.txt

Lines changed: 14 additions & 73 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Contributors: constantcontact, webdevstudios, tw2113, znowebdev, ggwicz, ra
33
Tags: capture, contacts, constant contact, constant contact form, constant contact newsletter, constant contact official, contact forms, email, form, forms, marketing, mobile, newsletter, opt-in, plugin, signup, subscribe, subscription, widget
44
Requires at least: 5.2.0
55
Tested up to: 5.7.0
6-
Stable tag: 1.11.0
6+
Stable tag: 1.12.0
77
License: GPLv3
88
License URI: http://www.gnu.org/licenses/gpl-3.0.html
99
Requires PHP: 5.6
@@ -43,78 +43,19 @@ https://www.youtube.com/watch?v=Qqb0_zcRKnM
4343

4444
== Changelog ==
4545

46-
= 1.11.0 =
47-
- Updated: New admin styling to update the overall look and feel of the plugin in the WordPress admin.
48-
- Updated: Amend honeypot field input for accessibility purposes.
49-
- Added: Plugin setting to disable the loading on Constant Contact plugin CSS on the frontend.
50-
- Added: Native browser validation for phone number (tel) field input type.
51-
- Fixed: Amended admin notification for Bad Request results.
52-
53-
= 1.10.1 =
54-
* Fixed: Removed accidental extra parentheses on a function call.
55-
56-
= 1.10.0 =
57-
* Added: Toggle to our Forms Block to display Form title or not.
58-
* Added: Support for displaying a form in Beaver Builder.
59-
* Added: Support for displaying a form in Elementor.
60-
* Fixed: PHP Notices about usage of deprecated functions.
61-
* Updated: Touched up styles for the Constant Contact Forms Block.
62-
63-
= 1.9.1 =
64-
* Fixed: Removing duplicate IDs on form submit button.
65-
* Fixed: Preventing `Bad Request` request errors from rendering an admin notice.
66-
* Fixed: Various other admin and front-end fixes.
67-
68-
= 1.9.0 =
69-
* Added: Ability for site owners to multiple lists for users to choose which to sign up for.
70-
* Fixed: Issues around enabling list signup on user registration.
71-
* Fixed: Unintended markup in email notification text.
72-
* Fixed: Inappropriate or unneeded markup around hidden fields.
73-
* Updated: Max length values for first/last name fields.
74-
* Updated: Deprecated some functions in order to get consistent naming across all our code.
75-
76-
= 1.8.8 =
77-
* Updated: Added extra security output escaping of custom input values
78-
79-
= 1.8.7 =
80-
* Improved: Implemented recommendations for improved accessibility.
81-
* Improved: Avoid duplicate ID attributes when more than one form is present on a page.
82-
* Fixed: Submit button targeting for recaptcha v2.
83-
84-
= 1.8.6 =
85-
* Fixed: Removed invalid property being sent to the API, causing rejected requests.
86-
* Fixed: Failure to log API errors for support purposes.
87-
88-
= 1.8.5 =
89-
* Added: Forced email notifications to admin when Constant Contact API request fails on attempted form submission.
90-
* Fixed: Addressed issues with plugin error logging and addressed false-positive error messaging.
91-
* Fixed: Cleaned up style minification task to allow for unminified version of stylesheet.
92-
* Updated: Updated support error messaging in admin to reference tab structure of plugin settings.
93-
94-
= 1.8.4 =
95-
* Fixed: Compatibility issue with PHP 5.6.
96-
97-
= 1.8.3 =
98-
* Fixed: Potential compatibility issues around Gutenberg block.
99-
* Fixed: Conflicts with multiple reCAPTCHAs on different Constant Contact Forms from the same page.
100-
* Fixed: Conflicts with multiple reCAPTCHAs on the same Constant Contact Form on the page multiple times.
101-
* Fixed: Removed incorrect usage of WordPress nonces on user submissions to forms.
102-
* Fixed: Address missed logging enabling for cases that potentially lead to missing debugging information.
103-
104-
= 1.8.2 =
105-
* Updated: Amended logging location for more hopefully more consistent write-ability and smoother support requests.
106-
107-
= 1.8.1 =
108-
* Fixed: Google reCAPTCHA issues with jQuery dependencies.
109-
* Fixed: Google reCAPTCHA undefined class errors when `allow_url_fopen` is disabled.
110-
* Fixed: Array to string errors when API errors occurred.
111-
112-
= 1.8.0 =
113-
* Added: Form and field IDs parameters to the `constant_contact_input_classes` filters.
114-
* Added: Site owners will be notified if they have stray shortcodes or widgets using a newly deleted form.
115-
* Added: Separated the settings page into tabs for better purpose organization.
116-
* Updated: Reduced frequency of admin notifications for potentially momentary issues.
117-
* Updated: Clarified details regarding "Redirect URL" setting.
46+
= 1.12.0 =
47+
* Added: “Limit 500 Characters” description below textarea fields
48+
* Added: CSS class selector to the div wrapping the list checkboxes
49+
* Added: Force email notifications if no list is selected for a form
50+
* Added: Multi-select list options to "advanced optin" settings
51+
* Added: New setting to override default opt-in text
52+
* Added: Two new filters to override state and zipcode labels
53+
* Changed: Change <small> to <sub> for form disclaimer
54+
* Fixed: Email field browser validation when form submits via AJAX
55+
* Fixed: Erroneous placeholder attribute on submit button
56+
* Fixed: Incomplete "ctct-label-" CSS class on submit button
57+
* Updated: Addressed limits and issues regarding list management
58+
* Updated: Better ensured security
11859

11960
== Frequently Asked Questions ==
12061

0 commit comments

Comments
 (0)