Skip to content

Commit

Permalink
Merge pull request #2688 from Parsely/prepare/3.16.3
Browse files Browse the repository at this point in the history
Release wp-parsely 3.16.3
  • Loading branch information
vaurdan authored Aug 8, 2024
2 parents 0e44216 + 5faa3ee commit 5c89a4f
Show file tree
Hide file tree
Showing 10 changed files with 29 additions and 23 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [3.16.3](https://github.com/Parsely/wp-parsely/compare/3.16.2...3.16.3) - 2024-08-08

### Fixed

- PCH Smart Linking: Fix issue with undefined 'wpParselySmartLinkingAllowedBlocks' ([#2685](https://github.com/Parsely/wp-parsely/pull/2685))

## [3.16.2](https://github.com/Parsely/wp-parsely/compare/3.16.1...3.16.2) - 2024-07-30

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Parse.ly

Stable tag: 3.16.2
Stable tag: 3.16.3
Requires at least: 5.2
Tested up to: 6.5
Requires PHP: 7.2
Expand Down
2 changes: 1 addition & 1 deletion build/content-helper/editor-sidebar.asset.php
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<?php return array('dependencies' => array('react', 'wp-api-fetch', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-core-data', 'wp-data', 'wp-dom-ready', 'wp-edit-post', 'wp-editor', 'wp-element', 'wp-hooks', 'wp-i18n', 'wp-plugins', 'wp-primitives', 'wp-url'), 'version' => '69283974093cc5f88771');
<?php return array('dependencies' => array('react', 'wp-api-fetch', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-core-data', 'wp-data', 'wp-dom-ready', 'wp-edit-post', 'wp-editor', 'wp-element', 'wp-hooks', 'wp-i18n', 'wp-plugins', 'wp-primitives', 'wp-url'), 'version' => '3f0bf999b9f142454ec8');
26 changes: 13 additions & 13 deletions build/content-helper/editor-sidebar.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wp-parsely",
"version": "3.16.2",
"version": "3.16.3",
"private": true,
"description": "The Parse.ly plugin facilitates real-time and historical analytics to your content through a platform designed and built for digital publishing.",
"author": "parsely, hbbtstar, jblz, mikeyarce, GaryJ, parsely_mike, acicovic, mehmoodak, vaurdan",
Expand Down
2 changes: 1 addition & 1 deletion src/Endpoints/class-base-api-proxy.php
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ protected function get_data( WP_REST_Request $request, bool $require_api_secret
}

// A proxy with caching behavior is used here.
$response = $this->api->get_items( $params ); // @phpstan-ignore-line.
$response = $this->api->get_items( $params );

if ( is_wp_error( $response ) ) {
return $response;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export const DEFAULT_MAX_LINKS = 10;
*
* @since 3.16.2
*/
export const ALLOWED_BLOCKS = window.wpParselySmartLinkingAllowedBlocks;
export const ALLOWED_BLOCKS = window.wpParselySmartLinkingAllowedBlocks ?? [ 'core/paragraph' ];

const permissions = getContentHelperPermissions();

Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
visitAdminPage,
} from '@wordpress/e2e-test-utils';

export const PLUGIN_VERSION = '3.16.2';
export const PLUGIN_VERSION = '3.16.3';
export const VALID_SITE_ID = 'demoaccount.parsely.com';
export const INVALID_SITE_ID = 'invalid.parsely.com';
export const VALID_API_SECRET = 'valid_api_secret';
Expand Down
4 changes: 2 additions & 2 deletions wp-parsely.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* Plugin Name: Parse.ly
* Plugin URI: https://docs.parse.ly/wordpress
* Description: This plugin makes it a snap to add Parse.ly tracking code and metadata to your WordPress blog.
* Version: 3.16.2
* Version: 3.16.3
* Author: Parse.ly
* Author URI: https://www.parse.ly
* Text Domain: wp-parsely
Expand Down Expand Up @@ -70,7 +70,7 @@
return;
}

const PARSELY_VERSION = '3.16.2';
const PARSELY_VERSION = '3.16.3';
const PARSELY_FILE = __FILE__;

require_once __DIR__ . '/src/Models/class-base-model.php';
Expand Down

0 comments on commit 5c89a4f

Please sign in to comment.