Skip to content

Commit 315232b

Browse files
Merge pull request #3548 from bolt/release-5.2.2
Release 5.2.2
2 parents 34c387b + 5ade651 commit 315232b

File tree

5 files changed

+29
-5
lines changed

5 files changed

+29
-5
lines changed

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
Changelog
22
=========
33

4+
## 5.2.2
5+
6+
Released: 2025-03-10
7+
8+
This release includes a security-related fix. Our thanks for identifying this issue and disclosing it to us responsibly! 👏🙏
9+
10+
### 🔐 Security related changes
11+
12+
- Validate submitted URL before processing it (bobvandevijver, [#3545](https://github.com/bolt/core/pull/3545))
13+
414
## 5.2.1
515

616
Released: 2025-03-06
@@ -96,6 +106,20 @@ Released: 2022-07-05
96106
- Add `isTranslatable` condition in `get`-method [#3250](https://github.com/bolt/core/pull/3250)
97107
- Additional fix for `type: number` field, set default to `min: 0`. [#3252](https://github.com/bolt/core/pull/3252)
98108

109+
## 5.1.25
110+
111+
Released: 2025-03-10
112+
113+
This release includes a security-related fix. Our thanks for identifying this issue and disclosing it to us responsibly! 👏🙏
114+
115+
### 🐛 Bug fixes
116+
117+
- Fix incorrect focus in invalid editor input fields (napley, [#3491](https://github.com/bolt/core/pull/3491))
118+
119+
### 🔐 Security related changes
120+
121+
- Validate submitted URL before processing it (bobvandevijver, [#3545](https://github.com/bolt/core/pull/3545))
122+
99123
## 5.1.24
100124

101125
Released: 2023-02-19

assets/js/version.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
// generated by genversion
2-
export const version = '5.2.1';
2+
export const version = '5.2.2';

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
@@ -1,6 +1,6 @@
11
{
22
"name": "bolt",
3-
"version": "5.2.1",
3+
"version": "5.2.2",
44
"homepage": "https://boltcms.io",
55
"author": "Bob den Otter <[email protected]> (https://boltcms.io)",
66
"license": "MIT",

src/Version.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ final class Version
2323
* Stable — 3.0.0
2424
* Development — 3.1.0 alpha 1
2525
*/
26-
public const VERSION = '5.2.1';
26+
public const VERSION = '5.2.2';
2727
public const CODENAME = '';
2828

2929
/**

0 commit comments

Comments
 (0)