Skip to content

Tags: sks/logchef

Tags

v0.5.1-rc.1

Toggle v0.5.1-rc.1's commit message
fix: Enable TLS

v0.5.0

Toggle v0.5.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Merge pull request mr-karan#54 from mr-karan/ql

feat: improve query UX

v0.4.0

Toggle v0.4.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Merge pull request mr-karan#50 from mr-karan/staging

release

v0.3.0

Toggle v0.3.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Merge pull request mr-karan#40 from mr-karan/ai

feat(server): MCP Server integration and docs

v0.2.2

Toggle v0.2.2's commit message
feat: Implement API token authentication

This commit introduces API token authentication and management features.

- Enable users to create, list, and delete API tokens via the UI.
- Allow API access using the "Authorization: Bearer <token>" header.
- Enhance security by hashing API tokens with a secret key.
- Introduce middleware for API token validation.
- Improve separation of concerns for session and token based user authentication.
- Fix an issue where the session variable would become nil after being populated in middleware.
- Add "auth_method" parameter to the user response to reflect the method used for authenticating.

v0.2.1

Toggle v0.2.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Merge pull request mr-karan#24 from mr-karan/rc

chore: docs

v0.2.1-rc.1

Toggle v0.2.1-rc.1's commit message
Fix: Enhance query editor, URL sync and saved query loading for bette…

…r user experience.

v0.2.0

Toggle v0.2.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Merge pull request mr-karan#24 from mr-karan/rc

chore: docs

v0.2.0-rc.4

Toggle v0.2.0-rc.4's commit message
fix: prevent table reference errors when switching sources

Fixes a race condition where queries with old table names would execute against new sources, causing "invalid table reference" errors. This commit:

- Clears generated SQL when changing sources
- Validates source details before executing queries
- Ensures table name compatibility during execution
- Adds robust error handling for source switching

v0.2.0-rc.3

Toggle v0.2.0-rc.3's commit message
Refactor: Streamline query execution by unifying time and filter logi…

…c in SQL, improve timezone handling, and enhance histogram queries.