Skip to content

Releases: aaronshaf/dynamodb-admin

Release v3.1.3

13 Apr 17:27
Compare
Choose a tag to compare

Fix

  • Fix purge table when table keys contain reserved characters (fixes #75)

Release v3.1.2

01 Mar 19:31
Compare
Choose a tag to compare

Fix

  • Fix purge table for tables that use RANGE key (thanks @jcdesignweb)

Maintenance

  • Update dependencies

Release v3.1.1

18 Jan 11:35
Compare
Choose a tag to compare

Fix

  • Fix handling of keys with special characters in Get view (#70)

Enhancement

  • Some internal refactoring to make code easier to read

Release v3.1.0

26 Nov 13:18
Compare
Choose a tag to compare

Feature

  • Add purge table functionality (#61)

Enhancement

  • List all seen fields in filter autocomplete popup, not just primary keys
  • (dev) Add npm run dev script for easier development (restarts on file changes)

Release v3.0.3

17 Nov 20:55
Compare
Choose a tag to compare

Fix

  • Displaying of items with 0 number value (#68)

Enhancement

  • Tweak ui during items loading and 'no results' message
  • Improve documentation on using dynamo credentials
  • Add badges for npm version and test status

Release v3.0.2

16 Oct 08:29
Compare
Choose a tag to compare

Fix

  • Error on start on Windows due to failure to get home directory path (#60)

Release v3.0.1

15 Oct 11:35
Compare
Choose a tag to compare

Fix

  • Fix error on start when ~/.aws (or config/credentials files within) don't exist

Release v3.0.0

15 Oct 11:07
Compare
Choose a tag to compare

Breaking changes

  • Will now read database configuration/credentials (access key, secret, region) from local configuration in ~/.aws/credentials and ~/.aws/config. This can potentially prevent connecting to database if previously one was connecting without specifying key/secret/region explicitly and depended on default values. In case there is configuration for default profile in aws configuration, that will be used now. Overwrite with environment variables AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY and AWS_REGION if that's the case.

Fix

  • Local ~/.aws/config from ~/.aws/credentials are not used (thx @sashokbg)

Enhancement

  • Load table items dynamically to improve responsiveness on fetching large data
  • Replace JSON.stringify for items with proper formatter that supports coloring by type and nesting items
  • Add possibility to navigate to previous page of results
  • (dev) Add eslint configuration, npm run lint script and fix linter issues

Release v2.0.8

06 Oct 22:30
Compare
Choose a tag to compare

Fix:

  • Listing all tables over the 100 count (thx @garrettheel)
  • Fix missing pagination in items list in certain corner-case (bug #44)

Enhancement:

  • Add confirmation before deleting table and don't navigate away from tables list after deleting (thx @sashokbg)
  • Use flex-box to better align item editor within viewport
  • Small UI tweaks

Release v2.0.7

15 Sep 09:42
Compare
Choose a tag to compare

Enhancement:

  • Upgrade Ace editor and add search extension (thanks Adam Sullovey)
  • Better console output on starting
  • Link docker image in the readme
  • Make docker image be built automatically on code change