Skip to content

Commit

Permalink
Release wp-parsely 3.13.3 (#2185)
Browse files Browse the repository at this point in the history
* build(deps-dev): bump @wordpress/env from 9.1.0 to 9.2.0

Bumps [@wordpress/env](https://github.com/WordPress/gutenberg/tree/HEAD/packages/env) from 9.1.0 to 9.2.0.
- [Release notes](https://github.com/WordPress/gutenberg/releases)
- [Changelog](https://github.com/WordPress/gutenberg/blob/trunk/packages/env/CHANGELOG.md)
- [Commits](https://github.com/WordPress/gutenberg/commits/@wordpress/env@9.2.0/packages/env)

---
updated-dependencies:
- dependency-name: "@wordpress/env"
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* Initialize the Excerpt Generator within the `enqueue_block_editor_assets` hook

* Change filter priority to `9`

* Change Track event to `title_suggestions_accept_pressed` (#2178)

Co-authored-by: Alex Cicovic <23142906+acicovic@users.noreply.github.com>

* Update version number and changelog for 3.13.3 release (#2184)

* Update wp-parsely version number to 3.13.3

* Update wp-parsely version number to 3.13.3

* Update CHANGELOG.md for version 3.13.3

* Update CHANGELOG.md

Clean-up extra line

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: Alex Cicovic <23142906+acicovic@users.noreply.github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
3 people authored Feb 1, 2024
1 parent dad1ff5 commit 17aacee
Show file tree
Hide file tree
Showing 9 changed files with 30 additions and 19 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,16 @@ 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.13.3](https://github.com/Parsely/wp-parsely/compare/3.13.2...3.13.3) - 2024-02-01

### Fixed

- PCH Excerpt Generator: Fix wrong initialization of the module ([#2179](https://github.com/Parsely/wp-parsely/pull/2179))

### 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.13.3+label%3A%22Component%3A+Dependencies%22).

## [3.13.2](https://github.com/Parsely/wp-parsely/compare/3.13.1...3.13.2) - 2024-01-29

### Dependency Updates
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.13.2
Stable tag: 3.13.3
Requires at least: 5.2
Tested up to: 6.4
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-components', 'wp-core-data', 'wp-data', 'wp-edit-post', 'wp-editor', 'wp-element', 'wp-i18n', 'wp-plugins', 'wp-primitives', 'wp-url'), 'version' => 'b23d9ca630bca23c9955');
<?php return array('dependencies' => array('react', 'wp-api-fetch', 'wp-components', 'wp-core-data', 'wp-data', 'wp-edit-post', 'wp-editor', 'wp-element', 'wp-i18n', 'wp-plugins', 'wp-primitives', 'wp-url'), 'version' => 'c5cfd2f2ca1a40f7169c');
2 changes: 1 addition & 1 deletion build/content-helper/editor-sidebar.js

Large diffs are not rendered by default.

18 changes: 9 additions & 9 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wp-parsely",
"version": "3.13.2",
"version": "3.13.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, pauarge",
Expand Down Expand Up @@ -66,7 +66,7 @@
"@wordpress/edit-post": "^7.24.0",
"@wordpress/editor": "^13.25.0",
"@wordpress/element": "^5.25.0",
"@wordpress/env": "^9.1.0",
"@wordpress/env": "^9.2.0",
"@wordpress/eslint-plugin": "^17.7.0",
"@wordpress/hooks": "^3.41.0",
"@wordpress/i18n": "^4.41.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ export const TitleSuggestionsPanel = ( {
// Pin the accepted title on the list of generated titles.
if ( acceptedTitle ) {
await dispatch( TitleStore ).pinTitle( TitleType.PostTitle, acceptedTitle );
Telemetry.trackEvent( 'title_suggestions_accepted', {
Telemetry.trackEvent( 'title_suggestions_accept_pressed', {
old_title: currentPostTitle,
new_title: acceptedTitle.title,
} );
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.13.2';
export const PLUGIN_VERSION = '3.13.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
7 changes: 4 additions & 3 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.13.2
* Version: 3.13.3
* Author: Parse.ly
* Author URI: https://www.parse.ly
* Text Domain: wp-parsely
Expand Down Expand Up @@ -67,7 +67,7 @@
return;
}

const PARSELY_VERSION = '3.13.2';
const PARSELY_VERSION = '3.13.3';
const PARSELY_FILE = __FILE__;

require_once __DIR__ . '/src/class-parsely.php';
Expand Down Expand Up @@ -266,7 +266,8 @@ function init_content_helper_editor_sidebar(): void {

require_once __DIR__ . '/src/content-helper/excerpt-generator/class-excerpt-generator.php';

add_action( 'init', __NAMESPACE__ . '\\init_content_helper_excerpt_generator' );
// The priority of 9 is used to ensure that the Excerpt Generator is loaded before the PCH Editor Sidebar (10).
add_action( 'enqueue_block_editor_assets', __NAMESPACE__ . '\\init_content_helper_excerpt_generator', 9 );
/**
* Initializes and inserts the PCH Excerpt Generator.
*
Expand Down

0 comments on commit 17aacee

Please sign in to comment.