Skip to content

Commit 4affef4

Browse files
Build "Merge pull request #3940 from Parsely/develop" (e311309)
1 parent f1a189b commit 4affef4

29 files changed

+1212
-1444
lines changed

.eslintrc

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"env": {
3-
"browser": true
3+
"browser": true,
4+
"es2020": true
45
},
56
"extends": [
67
"plugin:@wordpress/eslint-plugin/recommended-with-formatting",
@@ -53,6 +54,12 @@
5354
"jsdoc/check-tag-names": ["error", { "definedTags": ["link"] }],
5455
// Disable import resolution checks for TypeScript files as TypeScript handles this.
5556
"import/named": "off",
56-
"import/no-extraneous-dependencies": "off"
57+
"import/no-extraneous-dependencies": "off",
58+
// Allow imports from @wordpress package build-types for TypeScript type definitions.
59+
"import/no-unresolved": ["error", {
60+
"ignore": [
61+
"@wordpress/.*/build-types/.*"
62+
]
63+
}]
5764
}
5865
}

.github/workflows/e2e-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
npm run dev:stop
6060
6161
- name: Archive E2E results
62-
uses: actions/upload-artifact@v5
62+
uses: actions/upload-artifact@v6
6363
if: failure()
6464
with:
6565
name: test-results

.github/workflows/integration-tests.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -63,15 +63,8 @@ jobs:
6363
run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
6464

6565
- name: Install Composer dependencies
66-
if: ${{ matrix.php < 8.2 }}
6766
uses: ramsey/composer-install@v3
6867

69-
- name: Install Composer dependencies for PHP >= 8.2
70-
if: ${{ matrix.php >= 8.2 }}
71-
uses: ramsey/composer-install@v3
72-
with:
73-
composer-options: --ignore-platform-reqs
74-
7568
- name: Install Subversion
7669
run: |
7770
sudo apt-get update

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@ 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.22.0](https://github.com/Parsely/wp-parsely/compare/3.21.2...3.22.0) - 2026-01-12
9+
10+
### Added
11+
12+
- PCI Sidebar: Add Engagement Boost button ([#3748](https://github.com/Parsely/wp-parsely/pull/3748))
13+
14+
### Dependency Updates
15+
16+
- 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.22.0+label%3ADeps).
17+
818
## [3.21.2](https://github.com/Parsely/wp-parsely/compare/3.21.1...3.21.2) - 2025-12-02
919

1020
### Dependency Updates

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.21.2
3+
Stable tag: 3.22.0
44
Requires at least: 6.0
55
Tested up to: 6.8
66
Requires PHP: 7.4

bin/release.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,11 @@
2323
);
2424
}
2525

26+
// Ensure $argv is available (CLI context).
27+
if ( ! isset( $argv ) ) {
28+
exit( 'This script must be run from the command line.' );
29+
}
30+
2631
// Examine and assign arguments passed to the script.
2732
if ( count( $argv ) < 3 ) {
2833
exit(
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<?php return array('dependencies' => array('react', 'wp-api-fetch', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-element', 'wp-i18n', 'wp-url'), 'version' => 'ba768e74f926105e9b0d');
1+
<?php return array('dependencies' => array('react', 'wp-api-fetch', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-element', 'wp-i18n', 'wp-url'), 'version' => '11003228505bb09066c6');

build/blocks/recommendations/edit.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<?php return array('dependencies' => array('react', 'wp-api-fetch', 'wp-components', 'wp-compose', 'wp-dom-ready', 'wp-element', 'wp-i18n', 'wp-url'), 'version' => '3f8ff50ef974609570c3');
1+
<?php return array('dependencies' => array('react', 'wp-api-fetch', 'wp-components', 'wp-compose', 'wp-dom-ready', 'wp-element', 'wp-i18n', 'wp-url'), 'version' => '075ef105cb061944f60c');

build/blocks/recommendations/view.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)