8000 Prepare release 5.1.25 by bobvandevijver · Pull Request #3547 · bolt/core · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Prepare release 5.1.25 #3547

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 10, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,20 @@
Changelog
=========

## 5.1.25

Released: 2025-03-10

This release includes a security-related fix. Our thanks for identifying this issue and disclosing it to us responsibly! 👏🙏

### 🐛 Bug fixes

- Fix incorrect focus in invalid editor input fields (napley, [#3491](https://github.com/bolt/core/pull/3491))

### 🔐 Security related changes

- Validate submitted URL before processing it (bobvandevijver, [#3545](https://github.com/bolt/core/pull/3545))

## 5.1.24

Released: 2023-02-19
Expand Down
2 changes: 1 addition & 1 deletion assets/js/version.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// generated by genversion
export const version = '5.1.24';
export const version = '5.1.25';
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bolt",
"version": "5.1.24",
"version": "5.1.25",
"homepage": "https://boltcms.io",
"author": "Bob den Otter <bob@twokings.nl> (https://boltcms.io)",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion src/Version.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ final class Version
* Stable — 3.0.0
* Development — 3.1.0 alpha 1
*/
public const VERSION = '5.1.24';
public const VERSION = '5.1.25';
public const CODENAME = '';

/**
Expand Down
Loading
0