diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f3f3c7cd6..4865c3cd4d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,20 @@ 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.20.4](https://github.com/Parsely/wp-parsely/compare/3.20.3...3.20.4) - 2025-07-08 + +### Fixed + +- Fix: Allow domain override in canonical URLs ([#3525](https://github.com/Parsely/wp-parsely/pull/3525)) +- Improve Content Helper error handling ([#3477](https://github.com/Parsely/wp-parsely/pull/3477)) +- PCH: Fix some accessibility issues in Post Editor tooling ([#3476](https://github.com/Parsely/wp-parsely/pull/3476)) +- Stop fetch retries when ParselyAborted errors occur ([#3455](https://github.com/Parsely/wp-parsely/pull/3455)) +- Analytics Posts Endpoint: Fix incorrect validation logic ([#3454](https://github.com/Parsely/wp-parsely/pull/3454)) + +### Dependency Updates + +- The list of all dependency updates for this release is available [here](https://github.com/Parsely/wp-parsely/pulls?q=is%3Apr+is%3Amerged+milestone%3A3.20.4+label%3ADeps). + ## [3.20.3](https://github.com/Parsely/wp-parsely/compare/3.20.2...3.20.3) - 2025-06-25 ### Changed diff --git a/README.md b/README.md index 6572868814..16d3a8c8d3 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Parse.ly -Stable tag: 3.20.3 +Stable tag: 3.20.4 Requires at least: 6.0 Tested up to: 6.8 Requires PHP: 7.4 diff --git a/package-lock.json b/package-lock.json index 050beae081..6e07282671 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "wp-parsely", - "version": "3.20.3", + "version": "3.20.4", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "wp-parsely", - "version": "3.20.3", + "version": "3.20.4", "license": "GPL-2.0-or-later", "dependencies": { "@types/js-cookie": "^3.0.6", diff --git a/package.json b/package.json index a0a1833a2e..beeb588fac 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wp-parsely", - "version": "3.20.3", + "version": "3.20.4", "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", diff --git a/tests/e2e/utils.ts b/tests/e2e/utils.ts index ff3843341e..e7141f5357 100644 --- a/tests/e2e/utils.ts +++ b/tests/e2e/utils.ts @@ -8,7 +8,7 @@ import { type Page } from '@playwright/test'; */ import { Admin } from '@wordpress/e2e-test-utils-playwright'; -export const PLUGIN_VERSION = '3.20.3'; +export const PLUGIN_VERSION = '3.20.4'; export const VALID_SITE_ID = 'demoaccount.parsely.com'; export const INVALID_SITE_ID = 'invalid.parsely.com'; export const VALID_API_SECRET = 'valid_api_secret'; diff --git a/wp-parsely.php b/wp-parsely.php index 2c1d61bffb..41a6853571 100644 --- a/wp-parsely.php +++ b/wp-parsely.php @@ -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.20.3 + * Version: 3.20.4 * Author: Parse.ly * Author URI: https://www.parse.ly * Text Domain: wp-parsely @@ -49,7 +49,7 @@ return; } -const PARSELY_VERSION = '3.20.3'; +const PARSELY_VERSION = '3.20.4'; const PARSELY_FILE = __FILE__; const PARSELY_DATA_SCHEMA_VERSION = '1'; const PARSELY_CACHE_GROUP = 'wp-parsely';