Skip to content

Commit c2128f7

Browse files
Build "Merge pull request #3392 from Parsely/develop" (44a0042)
1 parent c3c34cd commit c2128f7

File tree

14 files changed

+743
-731
lines changed

14 files changed

+743
-731
lines changed

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.19.2](https://github.com/Parsely/wp-parsely/compare/3.19.1...3.19.2) - 2025-05-29
9+
10+
### Fixed
11+
12+
- add_parsely_preview_wrapper(): Allow mixed type values ([#3389](https://github.com/Parsely/wp-parsely/pull/3389))
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.19.2+label%3ADeps).
17+
818
## [3.19.1](https://github.com/Parsely/wp-parsely/compare/3.19.0...3.19.1) - 2025-05-21
919

1020
### Fixed

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

bin/install-wp-tests.sh

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ WP_TESTS_DIR=${WP_TESTS_DIR-$TMPDIR/wordpress-tests-lib}
2020
WP_CORE_DIR=${WP_CORE_DIR-$TMPDIR/wordpress/}
2121

2222
download() {
23-
if [ `which curl` ]; then
24-
curl -s "$1" > "$2";
25-
elif [ `which wget` ]; then
26-
wget -nv -O "$2" "$1"
27-
fi
23+
if [ `which curl` ]; then
24+
curl -s "$1" > "$2";
25+
elif [ `which wget` ]; then
26+
wget -nv -O "$2" "$1"
27+
fi
2828
}
2929

3030
if [[ $WP_VERSION =~ ^[0-9]+\.[0-9]+\-(beta|RC)[0-9]+$ ]]; then
@@ -75,7 +75,7 @@ install_wp() {
7575
rm -rf $TMPDIR/wordpress-nightly;
7676
fi
7777
mkdir -p $TMPDIR/wordpress-nightly
78-
download https://wordpress.org/nightly-builds/wordpress-latest.zip $TMPDIR/wordpress-nightly/wordpress-nightly.zip
78+
download https://wordpress.org/nightly-builds/wordpress-latest.zip $TMPDIR/wordpress-nightly/wordpress-nightly.zip
7979
unzip -q $TMPDIR/wordpress-nightly/wordpress-nightly.zip -d $TMPDIR/wordpress-nightly/
8080
mv $TMPDIR/wordpress-nightly/wordpress/* $WP_CORE_DIR
8181
else
@@ -100,7 +100,7 @@ install_wp() {
100100
else
101101
local ARCHIVE_NAME="wordpress-$WP_VERSION"
102102
fi
103-
download https://wordpress.org/${ARCHIVE_NAME}.tar.gz $TMPDIR/wordpress.tar.gz
103+
download https://wordpress.org/${ARCHIVE_NAME}.tar.gz $TMPDIR/wordpress.tar.gz
104104
tar --strip-components=1 -zxmf $TMPDIR/wordpress.tar.gz -C $WP_CORE_DIR
105105
fi
106106

bin/update-version.sh

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ set -e
1111
export LC_ALL=C
1212

1313
if [ -z "$1" ]; then
14-
echo "Error: You must specify a version number."
15-
exit 1
14+
echo "Error: You must specify a version number."
15+
exit 1
1616
fi
1717

1818
VERSION=$1
@@ -21,24 +21,24 @@ git checkout -b update/wp-parsely-version-to-$VERSION
2121

2222
# Function to perform in-place sed substitution.
2323
sed_inplace() {
24-
local expression="$1"
25-
local file="$2"
26-
27-
if [[ "$(uname)" == "Darwin" ]]; then
28-
# MacOS/BSD sed.
29-
sed -i '' -e "$expression" "$file"
30-
else
31-
# GNU sed (Linux).
32-
sed -i -e "$expression" "$file"
33-
fi
24+
local expression="$1"
25+
local file="$2"
26+
27+
if [[ "$(uname)" == "Darwin" ]]; then
28+
# MacOS/BSD sed.
29+
sed -i '' -e "$expression" "$file"
30+
else
31+
# GNU sed (Linux).
32+
sed -i -e "$expression" "$file"
33+
fi
3434
}
3535

3636
# Update version in files.
3737
sed_inplace "s/Stable tag: .* $/Stable tag: $VERSION /" README.md
3838
sed_inplace "s/\"version\": \".*\"/\"version\": \"$VERSION\"/" package.json
3939
sed_inplace "s/export const PLUGIN_VERSION = '.*'/export const PLUGIN_VERSION = '$VERSION'/" tests/e2e/utils.ts
4040
sed_inplace "s/ \* Version: .*$/ \* Version: $VERSION/" wp-parsely.php
41-
sed_inplace "s/const PARSELY_VERSION = '.*'/const PARSELY_VERSION = '$VERSION'/" wp-parsely.php
41+
sed_inplace "s/const PARSELY_VERSION = '.*'/const PARSELY_VERSION = '$VERSION'/" wp-parsely.php
4242

4343
npm install --ignore-scripts # Update package-lock.json with the new version.
4444

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-data', 'wp-dom-ready', 'wp-element', 'wp-escape-html', 'wp-i18n', 'wp-notices', 'wp-primitives', 'wp-url'), 'version' => '1417774194a1a7f2530a');
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' => '3bcb468b04c9bad5afcb');

build/content-helper/dashboard-page.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)