Skip to content

Commit deadd12

Browse files
authored
Merge pull request #3280 from Parsely/update/wp-parsely-version-to-3.18.0
2 parents cffd04f + cafec72 commit deadd12

File tree

6 files changed

+31
-7
lines changed

6 files changed

+31
-7
lines changed

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,30 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [3.18.0](https://github.com/Parsely/wp-parsely/compare/3.17.0...3.18.0) - 2025-04-21
9+
10+
### Added
11+
12+
- PCH: Add category slug support in search ([#3210](https://github.com/Parsely/wp-parsely/pull/3210))
13+
- Smart Linking: Add post details to the "Review" modal ([#3176](https://github.com/Parsely/wp-parsely/pull/3176))
14+
- PCH Related Posts: Add advanced search ([#3117](https://github.com/Parsely/wp-parsely/pull/3117))
15+
- Add identifier to JSON-LD metadata ([#3007](https://github.com/Parsely/wp-parsely/pull/3007))
16+
17+
### Changed
18+
19+
- Simplify check in admin_bar_parsely_stats_button() ([#3181](https://github.com/Parsely/wp-parsely/pull/3181))
20+
- PCH: Remove beta messaging ([#3066](https://github.com/Parsely/wp-parsely/pull/3066))
21+
22+
### Fixed
23+
24+
- Fix issue checking queried object with a false queried object ([#3178](https://github.com/Parsely/wp-parsely/pull/3178))
25+
- PCH: Fix issue with potential duplicate API calls in settings and smart links ([#3095](https://github.com/Parsely/wp-parsely/pull/3095))
26+
- Fix update metadata endpoint calling issues ([#3092](https://github.com/Parsely/wp-parsely/pull/3092))
27+
28+
### Dependency Updates
29+
30+
- 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.18.0+label%3ADeps).
31+
832
## [3.17.0](https://github.com/Parsely/wp-parsely/compare/3.16.4...3.17.0) - 2024-11-12
933

1034
### Added

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Parse.ly
22

3-
Stable tag: 3.17.0
3+
Stable tag: 3.18.0
44
Requires at least: 5.2
55
Tested up to: 6.8
66
Requires PHP: 7.2

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "wp-parsely",
3-
"version": "3.17.0",
3+
"version": "3.18.0",
44
"private": true,
55
"description": "The Parse.ly plugin facilitates real-time and historical analytics to your content through a platform designed and built for digital publishing.",
66
"author": "parsely, hbbtstar, jblz, mikeyarce, GaryJ, parsely_mike, acicovic, mehmoodak, vaurdan",

tests/e2e/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { type Page } from '@playwright/test';
88
*/
99
import { Admin } from '@wordpress/e2e-test-utils-playwright';
1010

11-
export const PLUGIN_VERSION = '3.17.0';
11+
export const PLUGIN_VERSION = '3.18.0';
1212
export const VALID_SITE_ID = 'demoaccount.parsely.com';
1313
export const INVALID_SITE_ID = 'invalid.parsely.com';
1414
export const VALID_API_SECRET = 'valid_api_secret';

wp-parsely.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* Plugin Name: Parse.ly
1212
* Plugin URI: https://docs.parse.ly/wordpress
1313
* Description: This plugin makes it a snap to add Parse.ly tracking code and metadata to your WordPress blog.
14-
* Version: 3.17.0
14+
* Version: 3.18.0
1515
* Author: Parse.ly
1616
* Author URI: https://www.parse.ly
1717
* Text Domain: wp-parsely
@@ -50,7 +50,7 @@
5050
return;
5151
}
5252

53-
const PARSELY_VERSION = '3.17.0';
53+
const PARSELY_VERSION = '3.18.0';
5454
const PARSELY_FILE = __FILE__;
5555

5656
if ( file_exists( __DIR__ . '/vendor/autoload.php' ) ) {

0 commit comments

Comments
 (0)