Skip to content

Releases: a3rev/responsi-a3-shortcode-addon

3.0.9

Choose a tag to compare

@mrkunau mrkunau released this 29 Mar 05:56

= 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

Choose a tag to compare

@mrkunau mrkunau released this 25 Jan 04:10

= 3.0.8 - 2022/01/25 =

  • This is a maintenance release for compatibility with WordPress major version 5.9 and Responsi 8.3.1
  • Tweak - Test for compatibility with WordPress 5.9
  • Tweak - Test for compatibility with Responsi 8.3.1

3.0.7

Choose a tag to compare

@mrkunau mrkunau released this 19 Jul 10:54

= 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

Choose a tag to compare

@mrkunau mrkunau released this 13 Jul 05:57

= 3.0.6 - 2021/07/13

  • This small maintenance release contains a security patch.
  • Security - Added escaping for the shortcode parameters

3.0.5

Choose a tag to compare

@mrkunau mrkunau released this 17 Mar 04:49

= 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

Choose a tag to compare

@mrkunau mrkunau released this 27 Jan 03:14

= 3.0.4 - 2021/01/27 =

  • This maintenance release has a bug fix for font face not loading in the Firefox browser.
  • Fix - downloadable font: rejected by sanitizer error. fontface not loading on Firefox browser.

3.0.3

Choose a tag to compare

@mrkunau mrkunau released this 31 Dec 09:13

== 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

Choose a tag to compare

@a3rev a3rev released this 19 Jun 11:31

= 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

Choose a tag to compare

@a3rev a3rev released this 15 May 05:48

= 3.0.1 - 2020/05/15 =

  • This maintenance release has a bug fix for the quote icon
  • Fix - Quote shortcode icon not showing

3.0.0

Choose a tag to compare

@a3rev a3rev released this 02 Apr 06:42

= 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