Skip to content

Commit

Permalink
v4.1.22
Browse files Browse the repository at this point in the history
  • Loading branch information
kjmartens committed Sep 6, 2024
1 parent da6dc0a commit 17fd9cb
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Solspace Freeform Changelog

## 4.1.22 - 2024-09-06

### Added
- Verified support for Craft 5.4.x.

### Fixed
- Fixed a bug where uploading assets to submissions in the control panel would incorrectly mark them as unfinalized assets to be deleted.
- Fixed a bug where an error could occur when creating new forms on some MySQL installs.

### Security
- Updated `axios` dependencies to address potential security vulnerabilities.

## 4.1.21 - 2024-08-14

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "solspace/craft-freeform",
"description": "The most reliable form builder that's ready for wherever your project takes you.",
"version": "4.1.21",
"version": "4.1.22",
"type": "craft-plugin",
"authors": [
{
Expand Down
2 changes: 1 addition & 1 deletion packages/plugin/src/Services/DiagnosticsService.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public function getServerChecks()
'You have an incompatible version of Craft installed. This version of Freeform currently supports Craft 4.0.0 and greater.'
),
new SuggestionValidator(
fn ($value) => version_compare($value['version'], '4.11.0', '<'),
fn ($value) => version_compare($value['version'], '4.13.0', '<'),
'Potential Craft Compatibility issue',
"The current version of Freeform installed may not be fully compatible with the version of Craft installed. Please confirm you're using a version of Freeform tested for compatibility with this version of Craft."
),
Expand Down

0 comments on commit 17fd9cb

Please sign in to comment.