Releases: a3rev/responsi-a3-shortcode-addon
Releases · a3rev/responsi-a3-shortcode-addon
Release list
3.0.9
= 3.0.9 - 2022/03/29 =
- This security hardening release follows a full PHPCS code audit with code refactoring and security hardening including additional escaping and sanitizing.
- Security - Escape all $-variable
- Security - Sanitize all $_REQUEST, $_GET, $_POST
- Security - Apply wp_unslash before sanitizing
3.0.8
3.0.7
= 3.0.7 - 2021/07/19 =
- This maintenance release is for compatibility with WordPress major version 5.8 plus some Security hardening.
- Tweak - Test for compatibility with WordPress 5.8
- Tweak - Add Update URI to plugin header with unique name
- Security - Get variable via name instead of use extract
3.0.6
3.0.5
= 3.0.5 - 2021/03/17
- This maintenance release updates deprecated jQuery functions for compatibility with the latest version of jQuery in WordPress 5.7
- Tweak – Replace deprecated .change( handler ) with .on( 'change', handler )
- Tweak – Replace deprecated .change() with .trigger('change')
- Tweak – Replace deprecated .focus( handler ) with .on( 'focus', handler )
- Tweak – Replace deprecated .focus() with .trigger('focus')
- Tweak – Replace deprecated .click( handler ) with .on( 'click', handler )
- Tweak – Replace deprecated .click() with .trigger('click')
- Tweak – Replace deprecated .select( handler ) with .on( 'select', handler )
- Tweak – Replace deprecated .select() with .trigger('select')
- Tweak – Replace deprecated .blur( handler ) with .on( 'blur', handler )
- Tweak – Replace deprecated .blur() with .trigger('blur')
- Tweak – Replace deprecated .resize( handler ) with .on( 'resize', handler )
- Tweak – Replace deprecated .submit( handler ) with .on( 'submit', handler )
- Tweak – Replace deprecated .scroll( handler ) with .on( 'scroll', handler )
- Tweak – Replace deprecated .mousedown( handler ) with .on( 'mousedown', handler )
- Tweak – Replace deprecated .mouseover( handler ) with .on( 'mouseover', handler )
- Tweak – Replace deprecated .mouseout( handler ) with .on( 'mouseout', handler )
- Tweak – Replace deprecated .keydown( handler ) with .on( 'keydown', handler )
- Tweak – Replace deprecated .attr('disabled', 'disabled') with .prop('disabled', true)
- Tweak – Replace deprecated .removeAttr('disabled') with .prop('disabled', false)
- Tweak – Replace deprecated .attr('selected', 'selected') with .prop('selected', true)
- Tweak – Replace deprecated .removeAttr('selected') with .prop('selected', false)
- Tweak – Replace deprecated .attr('checked', 'checked') with .prop('checked', true)
- Tweak – Replace deprecated .removeAttr('checked') with .prop('checked', false)
3.0.4
3.0.3
== 3.0.3 - 2020/01/31 =
- This is an important maintenance release that updates our scripts for compatibility with the latest version of jQuery released in WordPress 5.6
- Tweak - Update JavaScript on plugin for work compatibility with latest version of jQuery
- Fix - Replace .bind( event, handler ) by .on( event, handler ) for compatibility with latest version of jQuery
- Fix - Replace :eq() Selector by .eq() for compatibility with latest version of jQuery
- Fix - Replace .error() by .on( “error” ) for compatibility with latest version of jQuery
- Fix - Replace :first Selector by .first() for compatibility with latest version of jQuery
- Fix - Replace :gt(0) Selector by .slice(1) for compatibility with latest version of jQuery
- Fix - Remove jQuery.browser for compatibility with latest version of jQuery
- Fix - Replace jQuery.isArray() by Array.isArray() for compatibility with latest version of jQuery
- Fix - Replace jQuery.isFunction(x) by typeof x === “function” for compatibility with latest version of jQuery
- Fix - Replace jQuery.isNumeric(x) by typeof x === “number” for compatibility with latest version of jQuery
- Fix - Replace jQuery.now() by Date.now() for compatibility with latest version of jQuery
- Fix - Replace jQuery.parseJSON() by JSON.parse() for compatibility with latest version of jQuery
- Fix - Remove jQuery.support for compatibility with latest version of jQuery
- Fix - Replace jQuery.trim(x) by x.trim() for compatibility with latest version of jQuery
- Fix - Replace jQuery.type(x) by typeof x for compatibility with latest version of jQuery
- Fix - Replace .load( handler ) by .on( “load”, handler ) for compatibility with latest version of jQuery
- Fix - Replace .size() by .length for compatibility with latest version of jQuery
- Fix - Replace .unbind( event ) by .off( event ) for compatibility with latest version of jQuery
- Fix - Replace .unload( handler ) by .on( “unload”, handler ) for compatibility with latest version of jQuery
3.0.2
= 3.0.2 - 2020/06/19 =
- This maintenance release is for compatibility with Responsi Framework v 7.9.4 and Responsi Developer Tools v 2.1.0
- Tweak - CSS for compatibility with Responsi Framework v 7.9.4
- Tweak - JS for compatibility with Responsi Framework v 7.9.4
- Tweak - CSS for compatibility with Responsi Developer Tools v 2.1.0
- Tweak - JS for compatibility with Responsi Developer Tools v 2.1.0
3.0.1
3.0.0
= 3.0.0 - 2020/04/02 =
- This maintenance release is for compatibility with WordPress 5.4 plus 2 PHP fixes
- Tweak - Tested for compatibility with WordPress major version 5.4
- Tweak - Configure and run Travis CI unit test builds on the frameworks github repo.
- Fix - Update global ${$this- to $GLOBALS[$this to resolve 7.0+ PHP warnings
- Fix - Update global ${$option to $GLOBALS[$option to resolve 7.0+ PHP warnings