Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
105cc28
Add Headline Testing feature implementation
Crixu Aug 12, 2025
a3872a0
Improve script loading by using proper WordPress wp_enqueue_script in…
Crixu Aug 12, 2025
d341247
Fix PHPStan type issues: remove allowed_user_roles from type definiti…
Crixu Aug 12, 2025
426fec3
Fix remaining PHPStan type issues: improve validation logic, add prop…
Crixu Aug 12, 2025
0aa09e5
Fix script loading error: replace data attributes with query paramete…
Crixu Aug 12, 2025
4dab144
Fix radio button saving: correct HTML name generation for nested opti…
Crixu Aug 12, 2025
f138564
Fix live update timeout: always include timeout value in script param…
Crixu Aug 12, 2025
86e070e
Fix text field saving: add proper nested option handling for headline…
Crixu Aug 12, 2025
89af7e4
Fixed correct script enquing and configurations
Crixu Aug 12, 2025
c3700f1
Fixed Live Update Timeouts not being saved
Crixu Aug 12, 2025
e5f34c0
refactor: reduce code duplication in headline testing validation
Crixu Aug 12, 2025
0faca75
Added highly recommended to the helper text
Crixu Aug 13, 2025
6a7ad50
Merge branch 'develop' into feature/lradke-add-headline-testing-insta…
acicovic Oct 2, 2025
943e83f
Remove some unneeded modifications
acicovic Oct 3, 2025
7cf310e
class-settings-page.php: Improve whitespace and some DocBlocks
acicovic Oct 3, 2025
c95385b
print_text_tag(): Add support for number input attributes
acicovic Oct 3, 2025
9b92295
class-settings-page.php: Simplify and deduplicate
acicovic Oct 3, 2025
6a46eb6
Fix whitespace
acicovic Oct 6, 2025
94f0812
Remove unneeded uses
acicovic Oct 6, 2025
e90a292
Merge pull request #3738 from Parsely/trunk
acicovic Oct 6, 2025
78f1563
Update package-lock.json
acicovic Oct 6, 2025
908908a
Merge pull request #3739 from Parsely/update/package-lock-json
acicovic Oct 6, 2025
34f5cb4
bump-version.yml: Use PHP 8.4
acicovic Oct 6, 2025
aab700c
Merge branch 'develop' into update/use-php-8-4-in-bump-version-yml
acicovic Oct 6, 2025
8702eb7
Merge pull request #3740 from Parsely/update/use-php-8-4-in-bump-vers…
acicovic Oct 6, 2025
44e4b1c
.phpcs.xml.dist: Update minimum_supported_wp_version to 6.0
acicovic Oct 6, 2025
4910142
Merge pull request #3741 from Parsely/update/minimum_supported_wp_ver…
acicovic Oct 6, 2025
c8a4038
Merge branch 'develop' into feature/lradke-add-headline-testing-insta…
acicovic Oct 6, 2025
cc439e2
activation-flow.spec.ts: Add Headline Testing section testing
acicovic Oct 6, 2025
e3ccca4
Headline Testing settings endpoint: Use Subvalue_Spec in get_subvalue…
acicovic Oct 6, 2025
7630a43
class-settings-page.php: Simplify and move some code
acicovic Oct 7, 2025
312d026
Headline Testing: Add script integration tests
acicovic Oct 8, 2025
3f2b2b5
Headline Testing: Improve/fix/simplify main class
acicovic Oct 8, 2025
8ab4e38
add_data_attributes_to_script_tag: Check for filter existence before …
acicovic Oct 8, 2025
ec341e9
Fix some security issues
acicovic Oct 8, 2025
0f4e1e4
build(deps-dev): bump @playwright/test from 1.55.1 to 1.56.0 (#3742)
dependabot[bot] Oct 8, 2025
dc8ebd4
build(deps): bump github/codeql-action from 3 to 4 (#3744)
dependabot[bot] Oct 8, 2025
3d04606
Merge branch 'develop' into feature/lradke-add-headline-testing-insta…
acicovic Oct 8, 2025
3a915f8
Merge pull request #3601 from Parsely/feature/lradke-add-headline-tes…
acicovic Oct 8, 2025
67ec325
build(deps-dev): bump react-router from 7.9.3 to 7.9.4 (#3746)
dependabot[bot] Oct 9, 2025
ca1e024
Update wp-parsely version number to 3.21.0
github-actions[bot] Oct 13, 2025
7f0989c
Update CHANGELOG.md for version 3.21.0
github-actions[bot] Oct 13, 2025
d364dd0
Merge pull request #3750 from Parsely/update/wp-parsely-version-to-3.…
acicovic Oct 13, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/bump-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ jobs:
exit 1
fi

- name: Setup PHP 8.1
- name: Setup PHP 8.4
uses: shivammathur/setup-php@v2
with:
php-version: '8.1'
php-version: '8.4'
extensions: mbstring, json

- name: Checkout ${{ github.ref_name }} branch
Expand Down Expand Up @@ -73,10 +73,10 @@ jobs:
CURRENT_VERSION: ${{ needs.validate_version.outputs.current_version }}
GH_TOKEN: ${{ github.token }}
steps:
- name: Setup PHP 8.1
- name: Setup PHP 8.4
uses: shivammathur/setup-php@v2
with:
php-version: '8.1'
php-version: '8.4'
extensions: mbstring, json

- name: Configure Git
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
uses: github/codeql-action/init@v4
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
Expand All @@ -51,4 +51,4 @@ jobs:
# queries: ./path/to/local/query, your-org/your-repo/queries@main

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
uses: github/codeql-action/analyze@v4
2 changes: 1 addition & 1 deletion .phpcs.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
<rule ref="WordPress-Docs"/>
<!-- For help in understanding these custom sniff properties:
https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards/wiki/Customizable-sniff-properties -->
<config name="minimum_supported_wp_version" value="5.2"/>
<config name="minimum_supported_wp_version" value="6.0"/>

<!-- Rules: WordPress VIP - see
https://github.com/Automattic/VIP-Coding-Standards -->
Expand Down
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.21.0](https://github.com/Parsely/wp-parsely/compare/3.20.8...3.21.0) - 2025-10-13

### Added

- Settings: Add Headline Testing configuration ([#3601](https://github.com/Parsely/wp-parsely/pull/3601))

### 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.21.0+label%3ADeps).

## [3.20.8](https://github.com/Parsely/wp-parsely/compare/3.20.7...3.20.8) - 2025-10-06

### 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.20.8
Stable tag: 3.21.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Expand Down
2 changes: 1 addition & 1 deletion build/content-helper/dashboard-page.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-compose', 'wp-data', 'wp-dom-ready', 'wp-element', 'wp-escape-html', 'wp-i18n', 'wp-notices', 'wp-primitives', 'wp-url'), 'version' => '582c1c29d022bacbb8b4');
<?php return array('dependencies' => array('react', 'wp-api-fetch', 'wp-components', 'wp-compose', 'wp-data', 'wp-dom-ready', 'wp-element', 'wp-escape-html', 'wp-i18n', 'wp-notices', 'wp-primitives', 'wp-url'), 'version' => '1f63cd325b239aecd933');
2 changes: 1 addition & 1 deletion build/content-helper/dashboard-page.js

Large diffs are not rendered by default.

Loading
Loading