Limit jQuery with version < 3.7.0 to avoid dropdown error (#6672)

* Limit jQuery with version < 3.7.0 to avoid dropdown error

* Update php-test.yml

* Update AutoTourCest.php

---------

Co-authored-by: Lucas Bartholemy <luke-@users.noreply.github.com>
This commit is contained in:
Yuriy Bakhtin 2023-11-25 10:57:29 +01:00 committed by GitHub
parent 0f25e4b8fa
commit 837fbf1e2d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 288 additions and 253 deletions

View File

@ -10,6 +10,7 @@ HumHub Changelog
- Fix #6656: Fix people and space filters
- Fix #6652: Fix profile update on welcome page
- Fix #6660: Fix memory usage on integrity check
- Fix #6666: Limit jQuery with version < 3.7.0 to avoid dropdown error
- Fix #6653: URL in email notification removes the sub-folder of the Base URL
- Fix #6674: Fix visibility of draft and scheduled content on dashboard

View File

@ -43,7 +43,7 @@
"npm-asset/imagesloaded": "^5.0",
"npm-asset/intersection-observer": "^0.7.0",
"npm-asset/jplayer": "^2.9",
"npm-asset/jquery": "^3.6.3",
"npm-asset/jquery": "~3.6.3",
"npm-asset/jquery-ui": "^1.13.2",
"npm-asset/jquery-autosize": "^1.0",
"npm-asset/jquery-knob": "^1.2",

537
composer.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -14,6 +14,7 @@ use Yii;
class AutoTourCest
{
/**
* @skip
* @param AcceptanceTester $I
* @throws \Exception
*/