Skip to content

v0.3.3

Compare
Choose a tag to compare
@jorgerojas26 jorgerojas26 released this 03 Jan 00:07
· 27 commits to main since this release

Changelog

  • 2ff4289 Add ability to run commands before trying to connect
  • a186b99 Add connecting to database by connectionString given as an argument to cli
  • 0277c94 Add error to function signature and handle exiting in main func
  • 1a63a95 Add some documentation about the command options to the readme
  • b3b9c8b Added refresh command mapping
  • a20e3ca Cleanup the postgres code a little (don't use named returns)
  • 4863c95 Fix a bug that didn't take any where clauses into account
  • 20eb422 Fix import order
  • 28bef63 Fix linter issues by returning errors using fmt.Errorf
  • 8ae1464 Match README style better
  • c8d061a Merge pull request #119 from gytic/usage-info
  • d4cd01f Merge pull request #120 from Kuchteq/main
  • 78be965 Merge pull request #123 from gytic/refresh-tree
  • ab19ca5 Merge pull request #129 from svanharmelen/feat/commands
  • 76bac19 Merge pull request #141 from svanharmelen/chore/file_names
  • 34430fb Merge pull request #144 from SysIntruder/feat/mssql
  • b087ec7 Merge pull request #145 from svanharmelen/fix/pagination-info
  • 47b6745 Move initializing connection from command line arguments to a ArgConnection.go
  • f69ecc7 Rename files to the more commenly used (in Go projects) snake_case
  • ac8969d Replace Fprintln to log.Fatal on errors
  • f00e68f Switch bash to console in usage README
  • 23c863f Update Readme usage section
  • ce4bbdd Use the Database name in connection struct
  • d963b8b add: connect to DB info
  • 2e25071 add: keyboard shortcut hint
  • c0e5767 add: refresh logic for tree
  • bc697eb add: tutorial for editing a column
  • b08f1aa added refresh keybinding inside tree view
  • 31d429c added: usage information sections
  • 682d8e7 adjust: G201: SQL string formatting (gosec), increment use ++, remove unused const
  • 689ccb7 adjust: MsSQL -> MSSQL
  • cf12f9b adjust: move ParseURL from models into config, and rename it into ParseConfigURL
  • 4d9fd5b adjust: remove comment
  • b83eba8 adjust: remove errorlist pkg since the errors is not returned, but logged
  • ab57a00 change refresh table shortcut (to R)
  • 27c8a72 change to switch when checking arguments length
  • 273ef9a chore: fix linter issue
  • ec09e7f convert version to flag, print custom usage and error on multiple connection_urls
  • e080d02 feat: add 'N' and 'P' keybinding to tree node search navigation
  • dde61eb feat: add copy to clipboard to sidebar
  • 609747b feat: added mssql driver
  • f74b442 feat: errorlist helper
  • 03a2780 feat: extend config
  • d3c13ee fix output to stderr on error
  • e9c93a7 fix typo
  • b62215a fix: Mssql ExecutePendingChanges syntax and parameter count
  • 4e8067b fix: help display on 2 lines
  • 7e14647 fix: refresh not working when table was selected
  • d9b5b5d fix: remove schema from table name
  • 0a89296 fix: small readability upgrades
  • 18cba71 fix: typos and missing words
  • eef6d80 resolved comments