Skip to content

Commit 54bc5bb

Browse files
chore: release v1.0.1
1 parent ffb7d53 commit 54bc5bb

File tree

7 files changed

+13
-7
lines changed

7 files changed

+13
-7
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## <small>1.0.1 (2025-10-03)</small>
4+
5+
* fix: text field sanitization logic ([ffb7d53](https://github.com/WPTechnix/wp-settings-builder/commit/ffb7d53))
6+
* chore: update project description in README.md and composer.json ([3630adf](https://github.com/WPTechnix/wp-settings-builder/commit/3630adf))
7+
38
## 1.0.0 (2025-09-05)
49

510
### Features

bin/docker

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ run_in_container() {
8686
fi
8787

8888
echo "--- Running in '$service': ${cmd_array[*]} ---"
89-
exec docker exec "${exec_flags[@]}" "$container_id" "${cmd_array[@]}"
89+
MSYS_NO_PATHCONV=1 exec docker exec "${exec_flags[@]}" "$container_id" "${cmd_array[@]}"
9090
}
9191

9292

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "wptechnix/wp-settings-builder",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "WordPress settings framework for easily creating plugin and theme options pages. Includes 30+ field types such as AJAX relational fields, date pickers, and media uploaders.",
55
"type": "library",
66
"license": "MIT",
@@ -20,7 +20,7 @@
2020
"minimum-stability": "stable",
2121
"prefer-stable": true,
2222
"require": {
23-
"php": ">=8.0"
23+
"php": "^8.0"
2424
},
2525
"require-dev": {
2626
"humanmade/psalm-plugin-wordpress": "^3.1",

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
@@ -9,7 +9,7 @@
99
"framework",
1010
"settings-builder"
1111
],
12-
"version": "1.0.0",
12+
"version": "1.0.1",
1313
"author": "WPTechnix <[email protected]>",
1414
"devDependencies": {
1515
"@commitlint/cli": "^19.8.1",

psalm.xml.dist

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<?xml version="1.0"?>
22
<psalm
3+
cacheDirectory="/tmp/psalm-cache"
34
errorLevel="2"
45
resolveFromConfigFile="true"
56
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

src/Hooks_Registrar.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public function __construct(
5656
public function init(): void {
5757
add_action( 'admin_menu', [ $this, 'register_admin_page' ], 10, 0 );
5858
add_action( 'admin_init', [ $this, 'register_settings_api' ], 10, 0 );
59-
add_action( 'admin_enqueue_scripts', [ $this, 'enqueue_assets' ] );
59+
add_action( 'admin_enqueue_scripts', [ $this, 'enqueue_assets' ], 10, 1 );
6060

6161
foreach ( $this->ajax_actions as $action => $callback ) {
6262
/** @psalm-suppress HookNotFound */

0 commit comments

Comments
 (0)