Plugin Directory

Changeset 2800501


Ignore:
Timestamp:
10/18/2022 10:09:50 AM (3 years ago)
Author:
ringier
Message:

New release v1.3.1 | see changelog

Location:
ringier-bus/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • ringier-bus/trunk/CHANGELOG.md

    r2797606 r2800501  
    11# Changelog Details
     2
     3### 1.3.1 (Oct 18, 2022) ###
     4* [UPDATE] JSON | change page_type to content_type for sailthru vars
    25
    36### 1.3.0 (Oct 12, 2022) ###
  • ringier-bus/trunk/README.md

    r2797606 r2800501  
    77**Requires at least:** 5.7.0 
    88**Tested up to:** 6.0.2 
    9 **Stable tag:** 1.3.0 
     9**Stable tag:** 1.3.1 
    1010**License:** GPLv2 or later 
    1111**License URI:** http://www.gnu.org/licenses/gpl-2.0.html 
  • ringier-bus/trunk/readme.txt

    r2797606 r2800501  
    44Requires at least: 4.7
    55Tested up to: 6.0.2
    6 Stable tag: 1.3.0
     6Stable tag: 1.3.1
    77Requires PHP: 7.0
    88License: GPLv2 or later
     
    6868== Changelog ==
    6969
     70### 1.3.1 (Oct 18, 2022) ###
     71* [UPDATE] JSON | change page_type to content_type for sailthru vars
     72
    7073### 1.3.0 (Oct 12, 2022) ###
    7174* [NEW] custom post_type event | handle triggering of events separately for custom post_type
  • ringier-bus/trunk/ringier-bus.php

    r2797606 r2800501  
    1111 * Plugin URI: https://github.com/RingierIMU/mkt-plugin-wordpress-bus
    1212 * Description: A plugin to push events to Ringier CDE via the BUS API whenever an article is created, updated or deleted
    13  * Version: 1.3.0
     13 * Version: 1.3.1
    1414 * Requires at least: 4.7.0
    1515 * Author: Ringier SA, Wasseem Khayrattee
     
    5050 */
    5151define('RINGIER_BUS_DS', DIRECTORY_SEPARATOR);
    52 define('RINGIER_BUS_PLUGIN_VERSION', '1.3.0');
     52define('RINGIER_BUS_PLUGIN_VERSION', '1.3.1');
    5353define('RINGIER_BUS_PLUGIN_MINIMUM_WP_VERSION', '4.7');
    5454define('RINGIER_BUS_PLUGIN_DIR_URL', plugin_dir_url(__FILE__)); //has trailing slash at end
  • ringier-bus/trunk/src/Core/Bus/ArticleEvent.php

    r2793833 r2800501  
    385385
    386386        return [
    387             'page_type' => 'article',
     387            'content_type' => 'article',
    388388            'locale' => ringier_getLocale(),
    389389            'user_type' => $user_type_list,
Note: See TracChangeset for help on using the changeset viewer.