Skip to content

3.1.0

Compare
Choose a tag to compare
@ghdna ghdna released this 27 Jan 14:01
· 105 commits to master since this release

v3.1.0 checks for empty column values in every row and removes it from the final JSON response. As address in #2 .So instead of

{
    Items: [{
        resource: 'module',
        name: 'util',
        bucket_name: '',
        directory_path: '',
        file_name: '',
        comments: 'mpla mpla mpla',
        path_name: '',
        function_name: 'login_mm',
        index_name: '',
        lambda: 'fetchCustomer',
        branch: 'production'
    }]
}

you get a cleaner response like this:

{
    Items: [{
        resource: 'module',
        name: 'util',
        comments: 'mpla mpla mpla',
        function_name: 'login_mm',
        lambda: 'fetchCustomer',
        branch: 'production'
    }]
}