Releases: VictoriaMetrics/sql-to-logsql
Releases · VictoriaMetrics/sql-to-logsql
v0.10.0
What's Changed
- refactoring of UI by @Amper in #26:
- The interface has been made more compact — smaller fonts and less space
- Added time range for querying
- The option to choose between Query data and Translate only has been implemented
- Improved autocomplete for SQL
- Translated LogsQL text fixed at the top of table
- A lot of small style improvements
Full Changelog: v0.9.0...v0.10.0
v0.9.0
v0.8.0
What's Changed
- Implement case expression support by @Amper in #22
- Add instructions about integrations with DBeaver, Tableau and JetBrains IDEs by @Amper in #15
- Bump actions/setup-java from 4 to 5 by @dependabot[bot] in #16
- Bump actions/setup-node from 5 to 6 by @dependabot[bot] in #17
- Bump tar from 7.5.1 to 7.5.2 in /cmd/sql-to-logsql/web/ui by @dependabot[bot] in #18
- updated go version and we ui dependencies by @Amper in #19
- Bump golangci/golangci-lint-action from 8 to 9 by @dependabot[bot] in #20
- Bump js-yaml from 4.1.0 to 4.1.1 in /cmd/sql-to-logsql/web/ui by @dependabot[bot] in #21
New Contributors
- @dependabot[bot] made their first contribution in #16
Full Changelog: v0.7.0...v0.8.0
v0.7.0
What's Changed
- Syntax improvements for supporting JDBC-based tools by @Amper in #13
- Using ggregate functions with constants (literals):
SELECT SUM(1) FROM logs - Using aggregate in HAVING without using in SELECT:
SELECT SUM(1) FROM logs HAVING COUNT(1) > 0 - Using
selectwithoutfrom:SELECT 1 - Using table-alias with star:
SELECT l.* FROM logs l - Using
group bywithout aggregate function:"SELECT kubernetes.container_name FROM logs GROUP BY kubernetes.container_name
- Using ggregate functions with constants (literals):
- Initial JDBC driver support by @Amper in #14
Full Changelog: v0.6.0...v0.7.0