Skip to content
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

echarts version 5.0 #620

Merged
merged 4 commits into from
Feb 24, 2021
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ In order to read more about upgrading and BC breaks have a look at the [UPGRADE
+ [#605](https://github.com/luyadev/luya-module-admin/pull/605) Add new LUYA Test Suite for wider PHP Testing Support. Added Tests for PHP 8.
+ [#608](https://github.com/luyadev/luya-module-admin/pull/608) Use FileHelper::unlink method instead of PHP's `unlink` in order to prevent thrown exceptions.
+ [#609](https://github.com/luyadev/luya-module-admin/issues/609) Fixed generic issues when using PostgreSQL.
+ [#620](https://github.com/luyadev/luya-module-admin/pull/620) Changed echarts library to major [Version 5.0](https://github.com/apache/echarts/releases/tag/5.0.0)

## 3.9.0 (24. November 2020)

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"bower-asset/twigjs-bower":"~0.10.5",
"bower-asset/angular-filter":"~0.5.15",
"bower-asset/bowser":"^1.9",
"bower-asset/echarts":"4.5.0",
"bower-asset/echarts":"^5.0",
"bower-asset/ui-cropper":"^1.0",
"unglue/client":"^1.4.1",
"cebe/php-openapi":"^1.4"
Expand Down
2 changes: 1 addition & 1 deletion src/aws/ImageSelectCollectionActiveWindow.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ class ImageSelectCollectionActiveWindow extends ActiveWindow
public $sortIndexFieldName;

/**
* @var string The name of the module where the active windows is located in order to finde the view path.
* @var string The name of the module where the active windows is located in order to find the view path.
*/
public $module = 'admin';

Expand Down
2 changes: 1 addition & 1 deletion src/commands/views/aw/classfile.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,4 @@ public function index()
'model' => $this->model,
]);
}
}
}
23 changes: 22 additions & 1 deletion src/resources/dist/bower.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/resources/dist/main.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/resources/dist/main.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion tests/admin/commands/ActiveWindowControllerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public function testPhpViewRenderContent()
class MeinTestActiveWindow extends ActiveWindow
{
/**
* @var string The name of the module where the ActiveWindow is located in order to finde the view path.
* @var string The name of the module where the ActiveWindow is located in order to find the view path.
*/
public $module = '@cmsadmin';

Expand Down