Skip to content

Commit ae0fb77

Browse files
committed
Release 1.28: Code updates and support for WordPress 6.7.1
1 parent e9b814f commit ae0fb77

File tree

3 files changed

+25
-5
lines changed

3 files changed

+25
-5
lines changed

config.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"TESTED_UP_TO": "6.7",
3-
"STABLE_TAG": "1.27"
2+
"TESTED_UP_TO": "6.7.1",
3+
"STABLE_TAG": "1.28"
44
}

readme.txt

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ Contributors: simpleanalytics
44
Donate link: https://simpleanalytics.com
55
Tags: privacy-first, privacy-friendly, free analytics, website analytics, simple analytics, analytics, statistics
66
Requires at least: 5.2
7-
Tested up to: 6.7
7+
Tested up to: 6.7.1
88
Requires PHP: 7.2.0
9-
Stable tag: 1.27
9+
Stable tag: 1.28
1010
License: GPLv2 or later
1111
License URI: http://www.gnu.org/licenses/gpl-2.0.html
1212

@@ -74,6 +74,23 @@ No changes needed for upgrades.
7474

7575
== Changelog ==
7676

77+
= 1.28 =
78+
* 2024-11-21
79+
* Tested up to WordPress 6.7.1
80+
* Changes:
81+
* Fix invalid changelog multiline format
82+
* Fix invalid changelog format
83+
* Run awk instead of sed to consistently run on mac and linux
84+
* Run prettier to cleanup code
85+
* Remove rebase in git pull
86+
* Improve release.sh script and changelog
87+
* Use changelog from release script
88+
* Allow regualar commits
89+
* Set the checkbox default in the UI when empty
90+
* Fix boolean value default retrieval
91+
* Update version to support WordPress 6.7
92+
93+
7794
= 1.27 =
7895
* 2024-11-18
7996
* Upgraded to WordPress 6.7

src/Settings/Blocks/Fields/Checkbox.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,10 @@ class Checkbox extends Field
1010
{
1111
use HasDocs;
1212

13-
protected bool $default = false;
13+
/**
14+
* @var bool
15+
*/
16+
protected $default = false;
1417

1518
public function getValueSanitizer(): callable
1619
{

0 commit comments

Comments
 (0)