Skip to content

Release v3.0.0

Compare
Choose a tag to compare
@rchl rchl released this 15 Oct 11:07
· 224 commits to master since this release

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