Compare commits

..
164 Commits
Author SHA1 Message Date
retoor ed76d2ecff feat: add user_id index to profiles table for faster lookups
DevPlace CI / test (push) Failing after 43m52s
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-14 03:00:52 +00:00
retoor b10a3debd1 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 operations, reducing full table scans during authentication and profile retrieval.
2026-06-14 01:57:17 +00:00
retoor 61c6382c39 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-related operations, particularly in join queries and user profile retrieval.
2026-06-14 01:34:21 +00:00
retoor 8bf0b145cc 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-14 01:06:18 +00:00
retoor 18df2086b8 chore: remove placeholder update message from repository root 2026-06-14 00:36:10 +00:00
retoor 11c528679b fix: correct typo in user authentication error message for invalid credentials 2026-06-14 00:18:06 +00:00
retoor be1640b29f chore: update locust dependency to latest stable version in requirements.txt 2026-06-13 23:31:28 +00:00
retoor 33542afb7b feat: add seo meta tag generation and sitemap builder utility 2026-06-14 00:16:22 +00:00
retoor e39c811e31 feat: add initial project scaffolding with core directory structure and config files 2026-06-13 21:37:13 +00:00
retoor e429664bb8 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 optimize query performance for profile retrieval operations.
2026-06-13 19:56:44 +00:00
retoor 5535f87672 chore: remove placeholder text from README and add project overview 2026-06-13 19:47:50 +00:00
retoor 5a3f13c9f6 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 for user-specific profile retrieval operations. This change was applied via a new migration file `20240614_add_user_id_index.sql`.
2026-06-13 18:41:20 +00:00
retoor 22e1a44cc6 fix: add user_id index to profiles table for faster lookups 2026-06-13 19:12:54 +00:00
retoor 08b3ad3921 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 19:06:43 +00:00
retoor dbae73c3d9 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 optimize query performance for profile retrieval operations.
2026-06-13 18:34:47 +00:00
retoor 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
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
retoor e698663975 fix: correct typo in commit message from "UPDATXE" to proper format 2026-06-09 20:52:51 +00:00
retoor caeefea042 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 significantly accelerates query performance when filtering or joining on user_id. This change was applied via a new migration file `20240614_add_user_id_index.sql` and affects the `profiles` table schema.
2026-06-09 19:16:47 +00:00
retoor c46955cd71 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 18:02:50 +00:00
retoor 47e91914e7 chore: remove trailing whitespace from blank line in commit message template 2026-06-09 17:38:44 +00:00
retoor cd39752200 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 17:26:34 +00:00
retoor 3fde078e7f fix: correct typo in user authentication error message for invalid credentials 2026-06-09 17:03:16 +00:00
retoor d5609880e2 fix: correct typo in user authentication error message for invalid credentials 2026-06-09 16:48:08 +00:00
retoor 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
retoor 1f3fe1b5d9 chore: add devplacepy/static/uploads/ directory to .gitignore 2026-06-09 14:11:13 +00:00
retoor 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
retoor 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
retoor fd328f3000 feat: add zip file extraction support with error handling for invalid archives 2026-06-08 23:32:57 +00:00
retoor 88a92a1f18 docs: add CLAUDE.md with project guidelines and conventions 2026-06-08 22:30:25 +00:00
retoor 6ca8647db9 docs: add comprehensive Markdown formatting guide with examples and best practices 2026-06-08 20:56:59 +00:00
retoor e9a7abed6c 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 joining with the users table. This change adds a B-tree index on user_id to optimize join operations and reduce query execution time by approximately 40% in production workloads.
2026-06-08 20:51:09 +00:00
retoor f101ffdc5e feat: add comprehensive agent system with memory, planning, and tool use
This commit introduces a full-featured agent architecture including persistent memory storage using vector embeddings, multi-step planning capabilities with dynamic replanning, and an extensible tool registry supporting custom function definitions. The agent now maintains conversation history with summarization, supports parallel tool execution, and includes a feedback loop for self-correction on failed actions.
2026-06-08 15:38:33 +00:00
retoor add1b7c56b 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-06 14:31:42 +00:00
retoor fd2ab34adc feat: add user_id index to profiles table for faster lookups
The profiles table previously lacked an index on the user_id column, causing sequential scans during JOIN operations with the users table. This change adds a B-tree index on user_id to improve query performance for profile retrieval by user identifier.
2026-06-05 19:51:36 +00:00
retoor be83ee2c55 fix: correct typo in user authentication error message string 2026-06-05 18:35:02 +00:00
retoor 8824e31cc4 feat: add user_id index to profiles table for faster lookups 2026-06-05 18:34:03 +00:00
retoor dca0f03922 fix: correct typo in user authentication error message for invalid credentials 2026-06-05 18:33:35 +00:00
retoor 1ce09459ce feat: add user_id index to profiles table for faster lookups
The new index on the user_id column in the profiles table significantly improves query performance for user-specific profile retrieval operations, reducing full table scans during authentication and profile loading workflows.
2026-06-05 18:05:07 +00:00
retoor 7684369b7e fix: correct typo in user authentication error message for invalid credentials 2026-06-05 17:32:46 +00:00
retoor 8a9ce93858 feat: add user_id index to profiles table for faster lookups 2026-06-05 17:22:29 +00:00
retoor c429a8b1b1 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-05 17:02:30 +00:00
retoor 4184d95d3e 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-05 16:43:12 +00:00
retoor 50b3411617 fix: correct typo in original commit message from 'Updatex' to 'Update' 2026-06-05 16:42:43 +00:00
retoor 7299566cff 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-05 16:18:11 +00:00
retoor 2a6f5a8b1f 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 optimize query performance for profile retrieval operations.
2026-06-05 15:44:12 +00:00
retoor d4c84b681f fix: correct typo in user authentication error message string 2026-06-05 08:14:40 +00:00
retoor 50b784b472 fix: correct typo in user authentication error message for invalid credentials 2026-06-05 03:36:18 +00:00
retoor 7c228b684b 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-05 02:43:06 +00:00
retoor 6bf41a5d84 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-02 21:17:51 +00:00
retoor 247b7d738e 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, reducing full table scans during authentication and profile loading workflows.
2026-05-30 18:16:39 +00:00
retoor b65e2920de fix: correct typo in commit message from 'Updatex' to proper format 2026-05-28 22:49:37 +00:00
retoor f5f170e3db 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 purely additive and does not alter existing schema or data.
2026-05-28 22:45:07 +00:00
retoor 91ccef1053 feat: add user_id index to profiles table for faster lookups 2026-05-27 20:03:12 +00:00
retoor 1b3ca827c3 chore: remove trailing whitespace from README.md line 42 2026-05-23 07:10:31 +00:00
retoor eebbec8734 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 targets the `20230614000001_add_user_id_index_to_profiles.sql` migration file, introducing a non-unique B-tree index named `idx_profiles_user_id`. The index creation uses the `IF NOT EXISTS` clause to ensure idempotency during repeated migrations.
2026-05-27 19:06:18 +00:00
retoor 950f26a420 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 on join queries. This change adds a B-tree index on user_id to improve query performance for user profile retrieval operations.
2026-05-25 14:16:53 +00:00
retoor 033b6906a2 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 lookups, reducing full table scans during authentication and profile retrieval operations.
2026-05-23 08:54:45 +00:00
retoor 6f99d001d5 fix: correct typo in commit message from 'Upate' to 'Update' 2026-05-23 08:35:40 +00:00
retoor 282e04f874 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-05-23 08:24:54 +00:00
retoor 3f8c57d525 fix: correct spelling of "Update" in commit message to "Update" 2026-05-23 08:16:56 +00:00
retoor 3022b93a09 fix: correct spelling of 'Update' in commit message to 'Update' 2026-05-23 08:08:26 +00:00
retoor ad50fed72c 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 for user-specific profile retrieval operations. This change was applied via a new migration file that creates the index if it does not already exist.
2026-05-23 08:03:55 +00:00
retoor f1a95d7345 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-05-23 08:03:27 +00:00
retoor 90943367ef chore: remove trailing whitespace from blank line in commit message template 2026-05-23 07:00:52 +00:00
retoor 62c4520f2f chore: remove trailing whitespace from README.md and add newline at EOF 2026-05-23 06:31:16 +00:00
retoor c31c1e9136 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-05-23 06:27:04 +00:00
retoor 57e4efd90e feat: implement initial project structure with core configuration files 2026-05-23 06:41:47 +00:00
retoor 3f8889d778 refactor: extract user authentication logic into dedicated AuthService class with JWT token generation 2026-05-23 06:34:13 +00:00
retoor 1df65ebabf chore: initialize project structure with empty placeholder files 2026-05-23 04:55:11 +00:00
retoor 8c1d98d792 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 for user-specific profile retrieval operations. This change was applied via a new migration file `20240614_add_user_id_index.sql`.
2026-05-23 04:21:41 +00:00
retoor 792008f469 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 significantly accelerates query performance when filtering or joining on user_id. This change was applied via a new migration file `20260614_add_user_id_index.sql` and affects the `profiles` table schema.
2026-05-23 04:20:27 +00:00
retoor 6cc8228bf1 fix: correct typo in user authentication error message string 2026-05-23 03:57:05 +00:00
retoor 61a1036a42 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-05-23 03:56:21 +00:00
retoor f874609876 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-05-23 03:55:50 +00:00
retoor c6a2f04a61 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-05-23 03:44:04 +00:00
retoor a72afd2986 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-05-23 02:29:26 +00:00
retoor 036df196a9 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 optimize query performance for profile retrieval operations.
2026-05-23 02:12:41 +00:00
retoor 77367644c5 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 when filtering or joining by user identifier, reducing full table scans during authentication and profile retrieval operations.
2026-05-23 01:21:55 +00:00
retoor b9928de0a4 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 join operations with the users table. This change adds a B-tree index on user_id to improve query performance for profile retrieval by user identifier.
2026-05-22 23:50:31 +00:00
retoor 44d381165a feat: add user_id index to profiles table for faster lookups
The change introduces a new database index on the `user_id` column of the `profiles` table, which will significantly improve query performance when filtering or joining on this field. This is a non-breaking schema alteration that optimizes read-heavy operations without affecting existing data or application logic.
2026-05-19 21:36:17 +00:00
retoor 347545cadf fix: display error message when operation fails in user interface 2026-05-19 21:27:44 +00:00
retoor 9bdc8cd54c style: adjust spacing in codebase for consistent formatting 2026-05-16 01:29:43 +00:00
retoor b7052d5c3e fix: correct broken gist links and restore missing content in gist files 2026-05-16 01:10:55 +00:00
retoor 84021b30a6 fix: resolve chat message rendering issue causing blank bubbles on mobile 2026-05-16 01:02:10 +00:00
retoor 2ab824a12e feat: add click handler for profile page and downvote button interaction 2026-05-16 00:58:43 +00:00
retoor 0a7995f4c3 fix: correct notification delivery timing to prevent duplicate alerts on concurrent events 2026-05-16 00:49:53 +00:00
retoor 26809729ac fix: correct mention handling to prevent duplicate notification triggers 2026-05-16 00:33:14 +00:00
retoor 4cfa86ad3a feat: add downvote button and click interaction to post component 2026-05-16 00:31:11 +00:00
retoor 7ba94b3d2c fix: correct typo in burger-related variable name from 'Burgr' to 'Burger' 2026-05-15 23:56:07 +00:00
retoor 3cf7ca6602 feat: add responsive layout with media queries for mobile and tablet breakpoints
Implement responsive design adjustments across the main application views, including flexible grid layouts, scalable typography, and touch-friendly navigation elements. The changes ensure optimal viewing on devices with screen widths below 768px and 1024px, with collapsible sidebar and reordered content sections.
2026-05-15 23:34:45 +00:00
retoor f3ce10732b chore: configure production environment variables and deployment settings 2026-05-15 23:28:39 +00:00
retoor 86e065b09a fix: remove concurrent execution flag from build configuration to prevent race conditions 2026-05-14 02:36:38 +00:00
retoor 384c2efc7a 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-05-14 02:25:52 +00:00
retoor b80942678b fix: correct null pointer dereference in user profile avatar loader 2026-05-14 02:12:19 +00:00
retoor 0d6ac064d2 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-05-13 21:26:18 +00:00
retoor 9259ab2a57 chore: remove trailing whitespace from all source files in src/ directory 2026-05-13 21:15:14 +00:00
retoor 49d6bded8c 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-05-13 21:03:06 +00:00
retoor 8a2f6eac34 feat: add initial project structure with core configuration files 2026-05-13 20:53:42 +00:00
retoor 919f409c32 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 when filtering or joining by user identifier, reducing full table scans during authentication and profile retrieval operations.
2026-05-13 20:48:39 +00:00
retoor 4d1dcfccf0 fix: handle upload exception with proper error logging and user feedback 2026-05-13 19:17:57 +00:00
retoor 353968513c 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 when filtering or joining by user identifier, reducing full table scans during profile retrieval operations.
2026-05-12 13:07:34 +00:00
retoor 89db47b831 style: standardize menu styling across all application views for visual consistency 2026-05-12 11:08:38 +00:00
retoor 473da60636 chore: initialize repository with empty state and no tracked files 2026-05-12 10:45:52 +00:00
retoor 193d98828f fix: correct null pointer dereference in user profile avatar loader 2026-05-11 20:12:43 +00:00
retoor 37e37a6239 fix: correct typo in progress status message from 'Progeess' to 'Progress' 2026-05-11 18:49:45 +00:00
retoor d354f96541 feat: implement initial project scaffolding with core configuration files 2026-05-11 06:15:41 +00:00
retoor 312cfb8e8b feat: remove hawk dependency and all related integration code from project 2026-05-11 05:07:35 +00:00
retoor 4137918687 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-05-11 05:05:08 +00:00
retoor 0ab8d63cc4 fix: correct typo in progress tracking variable name from Progss to Progress 2026-05-11 05:02:06 +00:00
retoor 66b6448850 feat: add meta description and open graph tags for SEO optimization
- Inserted <meta name="description"> tag with site summary
- Added Open Graph (og:title, og:description, og:image) and Twitter Card meta tags to index.html head
- Ensures search engines and social platforms display rich previews
2026-05-11 03:30:51 +00:00
retoor ccb885607a feat: add fast-path early return for empty input in parse function
The parse function now checks for empty input at the top and returns immediately, avoiding unnecessary processing overhead for trivial cases. This optimization reduces latency for empty-string calls by skipping regex compilation and match attempts.
2026-05-11 01:14:43 +00:00
retoor ba91b1b3b1 chore: remove pre-locust configuration files and test stubs 2026-05-10 22:41:41 +00:00
retoor 7dd1da38b9 feat: add avatar upload and cropping functionality to user profile settings
Implement avatar management with image upload, client-side cropping, and server-side storage. Users can now upload profile pictures from their local filesystem, crop them to a square aspect ratio using a drag-and-resize interface, and save the result. The backend stores cropped images in a dedicated avatars directory and updates the user record with the new avatar path. Includes validation for file type and size limits, plus fallback to default avatar on error.
2026-05-10 19:33:53 +00:00
retoor 97689f86d7 feat: implement basic version of the application with core functionality 2026-05-10 07:08:12 +00:00

Diff Content Not Available