Commit Graph

26 Commits

Author SHA1 Message Date
f15d090db9 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 16:27:41 +00:00
eccec02336 chore: reorganize test files into domain-specific subdirectories 2026-06-13 14:32:33 +00:00
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
19551d8e93 fix: correct spelling of "Update" in commit message to "Update" 2026-06-13 12:56:35 +00:00
f5b2c62138 fix: restrict devii user access to audit logs with read-only permissions 2026-06-13 10:32:03 +00:00
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
ca12ec6de8 fix: correct typo in user authentication error message for invalid credentials 2026-06-12 20:50:27 +00:00
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
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
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
8668e02260 chore: update test assertion to match new error message format 2026-06-12 05:43:33 +00:00
8e0e9fa04c fix: correct typo in user authentication error message for invalid credentials 2026-06-11 22:40:27 +00:00
cb3e72cb8f chore: remove trailing whitespace from README.md formatting 2026-06-11 20:36:47 +00:00
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
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
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
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
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
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
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
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
0b7bfda1ab 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 16:37:49 +00:00
a58702968a 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 14:06:02 +00:00
c596a5db6e 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 lookups, reducing full table scans during authentication and profile retrieval operations.
2026-06-09 04:41:27 +00:00
fd328f3000 feat: add zip file extraction support with error handling for invalid archives 2026-06-08 23:32:57 +00:00
88a92a1f18 docs: add CLAUDE.md with project guidelines and conventions 2026-06-08 22:30:25 +00:00