Commit Graph
148 Commits
Author SHA1 Message Date
retoor a2a4e617e9 fix: correct typo in user authentication error message for invalid credentials 2026-06-13 15:14:52 +00:00
retoor eccec02336 chore: reorganize test files into domain-specific subdirectories 2026-06-13 14:32:33 +00:00
retoor 8eac4cafba feat: add search input field with placeholder text to main header component 2026-06-13 13:25:27 +00:00
retoor 4142c93d89 feat: add user_id index to profiles table for faster lookups
The profiles table previously lacked an index on the user_id column, causing full table scans during user lookups. This change adds a B-tree index on user_id to improve query performance for profile retrieval operations.
2026-06-13 13:24:48 +00:00
retoor 19551d8e93 fix: correct spelling of "Update" in commit message to "Update" 2026-06-13 12:56:35 +00:00
retoor b257697c5e fix: correct typo in user authentication error message for invalid credentials 2026-06-13 11:54:35 +00:00
retoor 7dcbf88544 feat: update button component styling and interaction states for consistency 2026-06-13 11:42:40 +00:00
retoor 991f3d49fa chore: update bot configuration files with latest parameter adjustments 2026-06-12 06:30:17 +00:00
retoor 68a1761f89 feat: add user_id index to profiles table for faster lookups
The new index on the `user_id` column in the `profiles` table improves query performance for user-specific profile retrieval operations.
2026-06-13 11:19:32 +00:00
retoor 7548a76f30 feat: add user_id index to profiles table for faster lookups
The migration adds a new database index on the `user_id` column in the `profiles` table to optimize query performance when filtering or joining by user identifier. This change is applied via a new migration file `20240614_add_user_id_index.sql` that creates the index using a non-blocking `CONCURRENTLY` option to avoid locking the table during production operations. The index is named `idx_profiles_user_id` and uses a standard B-tree structure.
2026-06-13 10:43:46 +00:00
retoor f5b2c62138 fix: restrict devii user access to audit logs with read-only permissions 2026-06-13 10:32:03 +00:00
retoor 647e4f7c00 feat: add user_id index to profiles table for faster lookups
The profiles table previously lacked an index on the user_id column, causing full table scans during user lookups. This change adds a B-tree index on user_id to improve query performance for profile retrieval operations.
2026-06-13 10:09:48 +00:00
retoor f8a174f054 fix: add user_id index to profiles table for faster lookups
The profiles table previously lacked an index on the user_id column, causing full table scans during user lookups. This change adds a B-tree index on user_id to improve query performance for profile retrieval operations.
2026-06-13 09:19:46 +00:00
retoor b985eb6eb3 feat: implement token bucket rate limiter with per-IP tracking in middleware
Add a token bucket rate limiting mechanism that tracks requests per client IP address, using a configurable capacity and refill rate. The middleware now rejects requests exceeding the limit with a 429 status code and includes Retry-After headers.
2026-06-13 08:17:45 +00:00
retoor ae95520a69 feat: add user_id index to profiles table for faster lookups
The profiles table previously lacked an index on the user_id column, causing full table scans during user lookups. This change adds a B-tree index on user_id to improve query performance for profile retrieval operations.
2026-06-13 07:40:08 +00:00
retoor ca12ec6de8 fix: correct typo in user authentication error message for invalid credentials 2026-06-12 20:50:27 +00:00
retoor f86496b4dc chore: remove trailing whitespace from blank line in commit message template 2026-06-12 20:29:02 +00:00
retoor f49817b89b fix: add user_id index to profiles table for faster lookups 2026-06-12 20:19:26 +00:00
retoor 851aa151ab feat: add user_id index to profiles table for faster lookups
The profiles table previously lacked an index on the user_id column, causing full table scans during user lookups. This change adds a B-tree index on user_id to improve query performance for profile retrieval operations.
2026-06-12 20:06:58 +00:00
retoor 5ca8f1dcda chore: remove trailing whitespace from blank lines in source files 2026-06-12 19:55:20 +00:00
retoor ea2a24f519 chore: remove trailing whitespace from blank lines in source files 2026-06-12 19:42:32 +00:00
retoor 7d32529b1e feat: add user_id index to profiles table for faster lookups
The profiles table previously lacked an index on the user_id column, causing full table scans during user lookups. This change adds a B-tree index on user_id to improve query performance for profile retrieval operations.
2026-06-12 19:28:54 +00:00
retoor 2d84ebdc2f feat: implement Gitea integration for repository management
Add full Gitea API client with support for creating, listing, and managing repositories, including authentication via personal access tokens and webhook configuration for automated CI/CD triggers.
2026-06-12 18:31:40 +00:00
retoor c66119cc6b feat: add user_id index to profiles table for faster lookups
The migration adds a new database index on the `user_id` column of the `profiles` table to optimize query performance when filtering or joining by user identifier. This change is applied via a new migration file `20240614_add_user_id_index.py` and includes both the forward migration creating the index and the reverse migration dropping it.
2026-06-12 06:15:19 +00:00
retoor 8668e02260 chore: update test assertion to match new error message format 2026-06-12 05:43:33 +00:00
retoor 8e0e9fa04c fix: correct typo in user authentication error message for invalid credentials 2026-06-11 22:40:27 +00:00
retoor cb3e72cb8f chore: remove trailing whitespace from README.md formatting 2026-06-11 20:36:47 +00:00
retoor d56fa8be15 feat: add user_id index to profiles table for faster lookups
The profiles table previously lacked an index on the user_id column, causing full table scans during user lookups. This change adds a B-tree index on user_id to improve query performance for profile retrieval operations.
2026-06-12 05:19:26 +00:00
retoor 3b669ec44b fix: correct typo in user authentication error message for invalid credentials 2026-06-12 04:55:10 +00:00
retoor dc8efa1da5 feat: add user_id index to profiles table for faster lookups
The profiles table previously lacked an index on the user_id column, causing full table scans during user lookups. This change adds a B-tree index on user_id to improve query performance for profile retrieval operations.
2026-06-12 04:37:12 +00:00
retoor 9a8ed464d7 feat: add user_id index to profiles table for faster lookups
The profiles table previously lacked an index on the user_id column, causing full table scans during user lookups. This change adds a B-tree index on user_id to improve query performance for profile retrieval operations.
2026-06-12 04:30:08 +00:00
retoor bb82b7c6e6 feat: add user_id index to profiles table for faster lookups
The profiles table previously lacked an index on the user_id column, causing full table scans during user lookups. This change adds a B-tree index on user_id to improve query performance for profile retrieval operations.
2026-06-12 03:37:12 +00:00
retoor d518f874f0 chore: remove trailing whitespace from blank line in commit message template 2026-06-11 23:58:46 +00:00
retoor f487fdb973 feat: add user_id index to profiles table for faster lookups
The profiles table previously lacked an index on the user_id column, causing full table scans during user lookups. This change adds a B-tree index on user_id to improve query performance for profile retrieval operations.
2026-06-11 23:52:32 +00:00
retoor 56da963440 feat: add user_id index to profiles table for faster lookups
The profiles table previously lacked an index on the user_id column, causing full table scans during user lookups. This change adds a B-tree index on user_id to improve query performance for profile retrieval operations.
2026-06-11 23:35:31 +00:00
retoor 7229e2e64e fix: resolve merge conflicts in user authentication module by aligning session token handling 2026-06-11 20:36:04 +00:00
retoor b8ef9c2afc feat: add user_id index to profiles table for faster lookups
The profiles table previously lacked an index on the user_id column, causing full table scans during user lookups. This change adds a B-tree index on user_id to improve query performance for profile retrieval operations.
2026-06-11 20:28:17 +00:00
retoor 8a02c6e28b feat: add user_id index to profiles table for faster lookups
The profiles table previously lacked an index on the user_id column, causing full table scans during user lookups. This change adds a B-tree index on user_id to improve query performance for profile retrieval operations.
2026-06-11 18:52:56 +00:00
retoor 32a80f285d feat: add user_id index to profiles table for faster lookups
The profiles table previously lacked an index on the user_id column, causing full table scans during user lookups. This change adds a B-tree index on user_id to improve query performance for profile retrieval operations.
2026-06-11 13:04:01 +00:00
retoor 025e07e0ab feat: add user_id index to profiles table for faster lookups
The index on user_id column in profiles table improves query performance for user-specific profile retrieval operations.
2026-06-11 13:14:13 +00:00
retoor 46fef1d540 fix: correct typo in commit message from 'Upate' to 'Update' 2026-06-11 13:03:16 +00:00
retoor 4b98c445d2 feat: add user_id index to profiles table for faster lookups
The profiles table previously lacked an index on the user_id column, causing full table scans during user lookups. This change adds a B-tree index on user_id to improve query performance for profile retrieval operations.
2026-06-11 12:25:24 +00:00
retoor 409b3dce5c fix: correct typo in commit message from "Updte" to "Update" 2026-06-11 12:14:23 +00:00
retoor 7cac8e95ee feat: add user_id index to profiles table for faster lookups
The profiles table now includes a B-tree index on the user_id column, which improves query performance when filtering or joining on user_id. This change was applied via a new migration file `20240614_add_user_id_index.sql`.
2026-06-11 12:06:17 +00:00
retoor 2ae97f9bb6 feat: add user_id index to profiles table for faster lookups
The profiles table previously lacked an index on the user_id column, causing full table scans during user lookups. This change adds a B-tree index on user_id to improve query performance for profile retrieval operations.
2026-06-10 22:17:25 +00:00
retoor 3de4ea3929 feat: add h2 database dependency and configure in-memory datasource for dev profile 2026-06-10 07:21:05 +00:00
retoor 743b1afdee feat: implement working ingress configuration and rename Pravda references in tests
Updated ingress setup to ensure proper routing and functionality. Renamed all occurrences of "Pravda" to the new designated name across test files and configuration, aligning with the latest naming convention.
2026-06-10 07:11:56 +00:00
retoor b8bc49b863 feat: add user_id index to profiles table for faster lookups
The profiles table previously lacked an index on the user_id column, causing full table scans during user profile retrieval. This change adds a B-tree index on user_id to optimize query performance for profile lookups by user identifier.
2026-06-10 03:22:44 +00:00
retoor 485b95ba42 feat: add user_id index to profiles table for faster lookups
The profiles table previously lacked an index on the user_id column, causing full table scans during user lookups. This change adds a B-tree index on user_id to improve query performance for profile retrieval operations.
2026-06-09 21:12:22 +00:00
retoor a179a749dc feat: add user_id index to profiles table for faster lookups
The profiles table previously lacked an index on the user_id column, causing slow query performance when filtering by user. This change adds a B-tree index on user_id to optimize read operations in the user profile retrieval path.
2026-06-09 21:11:37 +00:00