BETA version update log

v2.0.11-beta

Release date 2020/12/06

To upgrade, step-by-step execute the following command

composer remove dcat/laravel-admin
composer require dcat/laravel-admin: "2.0.11-beta"
php artisan admin:publish --assets --force
php artisan admin:publish --migrations --force # table structure changes
php artisan migrate

Bug fixes

  1. fix Dcat.init listener failure due to repeated page refreshes using pjax
  2. fix admin:export-seed --users which generates redundant code
  3. repair the problem of abnormal jumping after saving the form editing page
  4. repair the problem that hasMany will add data repeatedly if you choose to continue editing on the form page
  5. fix the problem that the original select2 config is lost after linking select forms #779
  6. fix map form loading exception problem #764
  7. fix the problem that the page cannot be refreshed automatically after the data is deleted by the batch delete function
  8. fix the problem that hasMany form editing page cannot display row and column layouts properly
  9. fix the problem that Dcat.init listener will be unbound by asynchronous pop-up window
  10. fix a bug that the table toolbar dropdown menu is blocked by the fixed list pane #728
  11. fix a problem where cached content is still read when showColumnSelector is disabled

Functional improvements

1. Add title parameter to Form::divider.

Add title parameter to display the title in the middle of the divider, usage

$form->divider('title');

2. Grid::footer and Grid::header adjusted to support multiple callbacks

$grid->header(...) ;

$grid->header(...) ;

$grid->header(...) ;

3. Optimize form specification filters and select form styles

v2.0.10-beta

Posted on 2020/11/29

To upgrade the method, execute the following step-by-step commands

composer remove dcat/laravel-admin
composer require dcat/laravel-admin:"2.0.10-beta"
php artisan admin:publish --assets --force
php artisan admin:publish --migrations --force # Table structure changed.
php artisan migrate

Functional improvements

1. Add a prompt window in the upper right corner of the form to display field validation error messages.

This feature is enabled by default and can be disabled by the validationErrorToastr method.

$form->validationErrorToastr(false);

2.Add Tree::maxDepth method to limit the maximum level of the model tree .

$tree->maxDepth(5);

3. Optimize the export function, support title settings associated with the relational fields and automatically read the title of the grid column .

In the current version, exported columns are the same as column columns by default, so you no longer need to set the exported column name and translation manually, and the associated relational fields are supported.

$grid->column('id');
$grid->column('name');
...

// Default is the same as the column above
$grid->export();

4. Add a resetButton and submitButton method to the tool form.

// Disable the Reset and Submit buttons
$form->resetButton(false);
$form->submitButton(false);

5. Add parameters to the disable and readOnly methods of the form fields to control whether they are enabled or not.

// pass false to disable
$form->text(...)->disable(false);

6. Adding withDeleteData to file uploads allows users to set request parameters and add primary key fields to the upload and delete interfaces.

The withDeleteData method allows you to pass custom parameters to the file delete interface.

$form->file(...)->withDeleteData(['key' => 'value]);

7. Add embeds form to disable display of titles.

The second parameter, passed as false, does not display the title.

$form->embeds('field', false, function ($form) {
    ...
});

8. Rewrite some of the unit test cases to support 2.x usage.

Bug fixes

  1. fix the problem that existing permissions cannot be selected on admin detail page.
  2. fix the problem of admin:export-seed command exporting seeder class name exception.
  3. fix the form deletion jump exception
  4. fix the problem of form jumping exception when continuing to edit.
  5. fix the problem that parent table fields cannot be saved when parent table and hasMany have the same field name.
  6. fix the problem that the style of selected submenu is abnormal in dark mode #712
  7. fix the problem that form dynamic display function is invalid under form block layout #723
  8. optimize the display of selectOptions hierarchy and solve the problem of prefix rendering increasing with the hierarchy depth index #618
  9. fix the problem that admin_view does not return data.
  10. fix the problem that links set by select form, ajax and load cannot take parameters #745
  11. fix the problem that the handle method of the table row operation action can only get id of the last row of data.
  12. fix the problem that list form edit page cannot delete existing data #759
  13. Fix the error in the embeds scope form's name attribute.

v2.0.9-beta

Posted on 2020/11/18

To upgrade the method, execute the following step-by-step commands

composer remove dcat/laravel-admin
composer require dcat/laravel-admin:"2.0.9-beta"
php artisan admin:publish --assets --force
php artisan admin:publish --migrations --force # 表结构有变动
php artisan migrate

Bug Fix.

  1. fix the function failure of form filter::select form remote load /load/ajax etc.
  2. fix the front-end moment-timezone component path loading error #701
  3. fix the problem of not being able to set permissions due to Form::tree not being able to save data.
  4. fix the problem of filling default value exception when the hasMany form has the same field name as the parent table.
  5. repair the problem of adding new page report when form tab layout is nested with row layout #648
  6. fix the problem of not being able to get all the values under range after submission when the form has range type field.
  7. fix the problem that select2 component is invalid when Form::select uses form linkage.

v2.0.8-beta

Posted on 2020/11/16

To upgrade the method, execute the following command step by step

composer remove dcat/laravel-admin
composer require dcat/laravel-admin:"2.0.8-beta"
php artisan admin:publish --assets --force
php artisan admin:publish --migrations --force # Table structure changed
php artisan migrate

As a supplement to 2.0.7-beta, the following issues are fixed in this release

  1. fix the problem of not being able to view permissions on the admin page
  2. fix the problem of form block layout failure
  3. fix the problem of abnormal initialization of file upload form.
  4. fix the problem that some form fields don't support rendering multiple fields on a single page at the same time.

v2.0.7-beta

Posted on 2020/11/15

To upgrade the method, execute the following command step by step

composer remove dcat/laravel-admin
composer require dcat/laravel-admin:"2.0.7-beta"
php artisan admin:publish --assets --force
php artisan admin:publish --migrations --force # Changes in table structure
php artisan migrate

Functional improvements

  1. Introduce the jquery.initialize component to listen to dynamically generated page elements and set a callback, the following is a simple example to demonstrate usage.

In older versions, if an element is dynamically generated by JS, and we need to bind a click event to that element, then we usually do this

<div class="selector">test</div>

<script>
Dcat.ready(function () {
    // You need to be off first and then on, otherwise page refresh will cause double bind problem.
    $(document).off('click', '.selector').on('click', '.selector', function () {
        ...
    })
});
</script>

The above approach is troublesome, you need to off and then on; secondly, you can not do some special treatment for dynamically generated elements, for example, if you want to change the background color after .selector is generated, there is no way to do this.

In this version we can use the Dcat.init method to listen to the dynamically generated elements.

<div class="selector">test</div>

<script>
Dcat.ready(function () {
    // $this is the jquery dom object of the current element.
    // id is the id attribute of the current element, if the current element has no id, a random id will be generated automatically.
    Dcat.init('.selector', function ($this, id) {
        // Change the background color of the element.
        $this.css({background: "#fff"});

        // There's no need for off and then on again, because the anonymous function will only be executed once!
        $this.on('click', function () {
            ...
        });
    });
});
</script>

Thanks to the introduction of the jquery.initialize component, in the current version we have optimized the front-end code of the form component to support the dynamically generated form type HasMany more easily. Significantly reduces the complexity of the code.

2.Form::hasMany and Form::array forms support column and row layout

If there are more fields, you can use column and row layout to save space.

$form->array('field', function (NestedForm $form) {
    $form->column(6, function (NestedForm $form) {
        $form->text('...');

        ...
    });

    $form->column(6, function (NestedForm $form) {
        ...
    });
});

3.Routes configured with the admin.auth.except parameter do not require authentication privileges #673

  1. Add when method to Form, Grid and Show field classes

Usage examples, similar to Laravel QueryBuilders when method

in the table

// Closing code will be executed when the first parameter is true.
$grid->column('title')->when(true, function (Grid\Column $column, $value) {
    $column->label();
});

form (document)

// Closing code will be executed when the first parameter is true.
$form->text('email')->when(true, function (Form\Field\Text $text, $value) {
    $text->type('email');
});
  1. Administrator model add canSeeMenu method to control whether the menu is visible or not.
<?php

namespace App\Models;

use Dcat\Admin\Models\Administrator as Model;

class Administrator extends Model
{
    /**
     * :: Control whether the menu is visible or not, return true by default
     * 
     * @param array|\Illuminate\Database\Eloquent\Model $menu menu node
     * @return bool
     */
    public function canSeeMenu($menu)
    {
        return true;
    }
}

6.Add admin_script、admin_style、admin_js、admin_css and admin_require_assets functions

// Equivalent to Admin::script
admin_script('console.log(xxx)');

// Equivalent to Admin::style
admin_style('.my-class {color: red}');

// Equivalent to Admin::js() 
admin_js(['@admin/xxx.js']);

// Equivalent to Admin::css() 
admin_css(['@admin/xxx.css']);

// Equivalent to Admin::requireAssets() 
admin_require_assets(['@select2']);
  1. simplify the action (Action) of the JS code logic, to remove the memory of the selector function

BUG FIX

  1. Fix anomaly in the orderable form #674
  2. fix the JsonResponse methodIf error.
  3. fix table, form, and data detail specifying label #684
  4. fix the problem that the table Grid::rows callback doesn't work properly.
  5. fix the problem of some types of statistical cards failing to load asynchronously due to exceptions in adding JS code to widgets.
  6. fix the getKey method exception for table row operations #691
  7. fix the problem of not being able to use the linkage function when there are multiple select forms in the page.
  8. Fix the problem of the table not being able to refresh automatically after deleting data.

v2.0.6-beta

Posted on 2020/11/7

To upgrade the method, execute the following command step by step

composer remove dcat/laravel-admin
composer require dcat/laravel-admin:"2.0.6-beta"
php artisan admin:publish --assets --force
php artisan admin:publish --migrations --force # 表结构有变动
php artisan migrate

Breaking Changes

1.Form::tags form is saved as array type by default

// You need to convert the format you save to the database yourself
$form->tags('tag')->saveAsJson();

2.The session middleware is disabled by default

3.Form\Tree::disableFilterParents renamed to Form\Tree::exceptParentNode

$form->tree('cate')->exceptParentNode(false);
  1. Adjust the method name of the file upload form part
    
    // Enable chunked uploads, disableChunked changed to chunked
    $form->image('avatar')->chunked(true);

// Enable auto-save field values, disableAutoSave changed to autoSave $form->image('avatar')->autoSave(false);

// Enable the file deletion function, disableRemove changed to removeable $form->image('avatar')->removeable(false);


**Functional improvements**

1.Code generator add field dragging sorting function, this method is contributed by partner [@codingyu](https://github.com/codingyu).

2. menu table to add `show` and `extension` field, `show` field is used to control whether to display the menu; `extension` field is used to mark whether to expand the menu

3.`Form::table`、`Form::array`、`Form::embeds` supports relational fields
```php
$form->table('profile.options', function ($form) {
    ...
});
  1. Add vertical display of Form::checkbox and Form::radio form options.

    $form->checkbox('xxx')->inline(false)->options([...]);
  2. Configuration file skip login and permission authentication allows configuration of routing aliases.

    'auth' => [
    'except' => [
        ...
        'user.login',
    ],
    ],

6.Form\Row adds getKey and model methods

  1. Optimize the form filter select form selection effect, the default is not selected

  2. Form tab layout optimization

BUG FIX

  1. fix Form::checkbox problem when check/uncheck all options.
  2. fix the problem that the default menu TITLE can not be translated in Taiwan Traditional Chinese.
  3. fix the problem that the number field in NestedForm is filtered when the input value is 0 #634
  4. fix the problem of getting primary key error when the model tree RowAction asynchronously processes the interface.
  5. Fix the problem of table filters failing to reset the search value of the associated table fields [#650] (https://github.com/jqhph/dcat-admin/issues/650)
  6. fix form filter multipleSelect form exception problem

v2.0.5-beta

Posted on 2020/10/29

BUG FIXES

  1. fix the problem of table search multiple related table fields sql error I232T7
  2. fix the problem of Form::datetimeRange form not being able to select logs.
  3. Fix the problem of not being able to add multiple Form::table form fields #627
  4. fix the error in the form filter MultipleSelectTable.
  5. Fix the problem of abnormal style of table specification filter.

v2.0.4-beta

Posted on 2020/10/27

BUG FIXES

  1. fix the problem that the admin_javascript_json function will automatically empty-filter an array of null values.
  2. fix the error of using tab layout for data form #620
  3. fix the problem of abnormal permissions for temporary directories generated by extended local installation #625
  4. fix the error when using html method to set view with script tag #624.
  5. Fix the error of displaying data details using correlations (one-to-many) #623
  6. fix the dropdown menu calculation display position exception #I22S2N

v2.0.3-beta

Posted on 2020/10/27

BUG FIXES

  1. fix the problem of abnormal display of return information in form row editing
  2. Fix invalid setting of admin.auth.member #613
  3. fix the abnormal Chinese translation problem of editor form #611
  4. fix the problem that Filter::scope can't filter pagination parameters when selecting filter item.
  5. fix issues related to form event interception
  6. Fix the problem of abnormal use of tree form #619

Functional improvements

  1. add the configuration of skip privileges and login authentication
  2. Extending the service provider to include middleware and route-checking registrations
  3. batch operation change event monitoring optimization
  4. Increase RowSelector robustness to avoid errors due to unprocessed json array type fields #609

v2.0.2-beta

Posted on 2020/10/21

BUG FIXES

  1. Fix naming space exception in controller file generated by code generator #600
  2. fix the problem of configuration file logo path error
  3. Fix the problem of invalid search for associated fields in tables
  4. fix the problem of duplicate selectors generated by model tree operation
  5. fix the problem of accessing permissionless page report
  6. Fix the problem that table filter multipleSelect cannot select the value of the associated table field #603
  7. Fix invalid form tab layout #605

Functional improvements

  1. Auth\Permission to move to Http directory
  2. Replace the json field in the data table with text
  3. add login password error translation
  4. add admin_javascript_json function, make most of the component configuration support passing JS code
  5. Admin::color Add dark mode color.

v2.0.1-beta

Posted on 2020/10/20

BUG FIXES

Functional improvements