Skip to content

Releases: ghdna/athena-express

Pagination Enabled

21 May 01:25
Compare
Choose a tag to compare

Pagination was enabled in v7.0.0. But forgot to tag that as a release on GH. A defect was raised #65 on pagination skipping 1 record. That defect has been fixed in v7.1.0

Workgroups & Stats

10 Apr 13:26
Compare
Choose a tag to compare

New capabilities:

  • Support for Athena Workgroups
  • Additional stats

Encryption

14 May 18:13
Compare
Choose a tag to compare

Encryption is now supported. Courtesy of @studmanho

S3 support for subfolders

28 Jan 16:22
Compare
Choose a tag to compare

S3 location now supports subfolders. Addresses #4

3.2.5

28 Jan 12:27
Compare
Choose a tag to compare

Removed a typo from library causing it to fail when retrieving unformatted JSON from S3. As addressed in #3

3.1.0

27 Jan 14:01
Compare
Choose a tag to compare

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'
    }]
}

3.0

22 Jan 23:58
Compare
Choose a tag to compare
3.0
  • Support for querying infinite records. Earlier Athena was restricting at 999 records.
  • Better JSON structuring for utility queries. e.g. for SHOW TABLES
{ Items:
  [ { row: 'default' },
    { row: 'sampledb' } ] }

GA

16 Aug 04:36
Compare
Choose a tag to compare
GA
v1.2.1

readme updated