Commit Graph

124 Commits

Author SHA1 Message Date
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
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
3b669ec44b fix: correct typo in user authentication error message for invalid credentials 2026-06-12 04:55:10 +00:00
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
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
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
d518f874f0 chore: remove trailing whitespace from blank line in commit message template 2026-06-11 23:58:46 +00:00
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
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
7229e2e64e fix: resolve merge conflicts in user authentication module by aligning session token handling 2026-06-11 20:36:04 +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
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
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
46fef1d540 fix: correct typo in commit message from 'Upate' to 'Update' 2026-06-11 13:03:16 +00:00
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
409b3dce5c fix: correct typo in commit message from "Updte" to "Update" 2026-06-11 12:14:23 +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
3de4ea3929 feat: add h2 database dependency and configure in-memory datasource for dev profile 2026-06-10 07:21:05 +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
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
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
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
e698663975 fix: correct typo in commit message from "UPDATXE" to proper format 2026-06-09 20:52:51 +00:00
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
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
47e91914e7 chore: remove trailing whitespace from blank line in commit message template 2026-06-09 17:38:44 +00:00
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
3fde078e7f fix: correct typo in user authentication error message for invalid credentials 2026-06-09 17:03:16 +00:00
d5609880e2 fix: correct typo in user authentication error message for invalid credentials 2026-06-09 16:48:08 +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
1f3fe1b5d9 chore: add devplacepy/static/uploads/ directory to .gitignore 2026-06-09 14:11:13 +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
6ca8647db9 docs: add comprehensive Markdown formatting guide with examples and best practices 2026-06-08 20:56:59 +00:00
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
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
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
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
be83ee2c55 fix: correct typo in user authentication error message string 2026-06-05 18:35:02 +00:00
8824e31cc4 feat: add user_id index to profiles table for faster lookups 2026-06-05 18:34:03 +00:00
dca0f03922 fix: correct typo in user authentication error message for invalid credentials 2026-06-05 18:33:35 +00:00
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
7684369b7e fix: correct typo in user authentication error message for invalid credentials 2026-06-05 17:32:46 +00:00
8a9ce93858 feat: add user_id index to profiles table for faster lookups 2026-06-05 17:22:29 +00:00