Skip to content

Commit

Permalink
Merge branch '4.x' into bugfix/15565-money-field-currency-formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonkelly committed Aug 21, 2024
2 parents 40857ab + e8d2e8a commit e3ed82c
Show file tree
Hide file tree
Showing 9 changed files with 53 additions and 45 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,11 @@

## Unreleased

- Updated jQuery UI to 1.13.3. ([#15558](https://github.com/craftcms/cms/issues/15558))
- Fixed a bug where `craft\helpers\App::env()` and `normalizeValue()` could return incorrect results for values that looked like floats. ([#15533](https://github.com/craftcms/cms/issues/15533))
- Fixed a bug where the `users/set-password` action wasn’t respecting `redirect` params. ([#15538](https://github.com/craftcms/cms/issues/15538))
- Fixed a bug where the “Default Values” Table field setting wasn’t escaping column headings. ([#15552](https://github.com/craftcms/cms/issues/15552))
- Fixed a bug where Craft couldn’t be installed with existing project config files, if any plugins specified their schema version via `composer.json`. ([#15559](https://github.com/craftcms/cms/issues/15559))

## 4.11.3 - 2024-08-13

Expand Down
18 changes: 9 additions & 9 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
Expand Up @@ -47,7 +47,7 @@
"iframe-resizer": "^4.3.2",
"inputmask": "^5.0.9",
"jquery": "^3.6.0",
"jquery-ui": "^1.13.1",
"jquery-ui": "^1.13.3",
"jquery.payment": "^3.0.0",
"picturefill": "^3.0.3",
"punycode": "^2.3.1",
Expand Down
9 changes: 7 additions & 2 deletions src/migrations/Install.php
Original file line number Diff line number Diff line change
Expand Up @@ -1201,8 +1201,13 @@ private function _validateProjectConfig(string &$error = null): bool
return false;
}

$pluginRef = new ReflectionClass($pluginInfo['class']);
$schemaVersion = $pluginRef->getProperty('schemaVersion')->getDefaultValue();
if (isset($pluginInfo['schemaVersion'])) {
$schemaVersion = $pluginInfo['schemaVersion'];
} else {
$pluginRef = new ReflectionClass($pluginInfo['class']);
$schemaVersion = $pluginRef->getProperty('schemaVersion')->getDefaultValue();
}

$expectedSchemaVersion = $pluginConfig['schemaVersion'] ?? null;

if ($schemaVersion && $expectedSchemaVersion && $schemaVersion != $expectedSchemaVersion) {
Expand Down
2 changes: 1 addition & 1 deletion src/web/assets/jqueryui/dist/jquery-ui.js

Large diffs are not rendered by default.

58 changes: 29 additions & 29 deletions src/web/assets/jqueryui/dist/jquery-ui.js.LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,64 +1,64 @@
/*!
* jQuery UI Datepicker 1.13.2
* http://jqueryui.com
* jQuery UI Datepicker 1.14.0
* https://jqueryui.com
*
* Copyright jQuery Foundation and other contributors
* Copyright OpenJS Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
* https://jquery.org/license
*/

/*!
* jQuery UI Focusable 1.13.2
* http://jqueryui.com
* jQuery UI Focusable 1.14.0
* https://jqueryui.com
*
* Copyright jQuery Foundation and other contributors
* Copyright OpenJS Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
* https://jquery.org/license
*/

/*!
* jQuery UI Keycode 1.13.2
* http://jqueryui.com
* jQuery UI Keycode 1.14.0
* https://jqueryui.com
*
* Copyright jQuery Foundation and other contributors
* Copyright OpenJS Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
* https://jquery.org/license
*/

/*!
* jQuery UI Mouse 1.13.2
* http://jqueryui.com
* jQuery UI Mouse 1.14.0
* https://jqueryui.com
*
* Copyright jQuery Foundation and other contributors
* Copyright OpenJS Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
* https://jquery.org/license
*/

/*!
* jQuery UI Position 1.13.2
* http://jqueryui.com
* jQuery UI Position 1.14.0
* https://jqueryui.com
*
* Copyright jQuery Foundation and other contributors
* Copyright OpenJS Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
* https://jquery.org/license
*
* http://api.jqueryui.com/position/
* https://api.jqueryui.com/position/
*/

/*!
* jQuery UI Scroll Parent 1.13.2
* http://jqueryui.com
* jQuery UI Scroll Parent 1.14.0
* https://jqueryui.com
*
* Copyright jQuery Foundation and other contributors
* Copyright OpenJS Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
* https://jquery.org/license
*/

/*!
* jQuery UI Widget 1.13.2
* http://jqueryui.com
* jQuery UI Widget 1.14.0
* https://jqueryui.com
*
* Copyright jQuery Foundation and other contributors
* Copyright OpenJS Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
* https://jquery.org/license
*/
2 changes: 1 addition & 1 deletion src/web/assets/tablesettings/dist/TableFieldSettings.js

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

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/web/assets/tablesettings/src/TableFieldSettings.js
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@
theadHtml +=
'<th scope="col">' +
(this.columnsData[colId].heading
? this.columnsData[colId].heading
? Craft.escapeHtml(this.columnsData[colId].heading)
: '&nbsp;') +
'</th>';
}
Expand Down

0 comments on commit e3ed82c

Please sign in to comment.