Releases: aaronshaf/dynamodb-admin
Releases · aaronshaf/dynamodb-admin
Release v3.1.3
Fix
- Fix
purge table
when table keys contain reserved characters (fixes #75)
Release v3.1.2
Fix
- Fix
purge table
for tables that use RANGE key (thanks @jcdesignweb)
Maintenance
- Update dependencies
Release v3.1.1
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
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
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
Fix
- Error on start on Windows due to failure to get home directory path (#60)
Release v3.0.1
Fix
- Fix error on start when ~/.aws (or config/credentials files within) don't exist
Release v3.0.0
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 fordefault
profile in aws configuration, that will be used now. Overwrite with environment variablesAWS_ACCESS_KEY_ID
,AWS_SECRET_ACCESS_KEY
andAWS_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
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
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