bot
c4308bfe8f
chore: update base application package dependencies and configuration files
Build Base Application / Build (push) Successful in 1m20s
2025-08-08 02:55:16 +00:00
retoor
4b185489fa
chore: remove trailing whitespace from all source files in src/ directory
2025-08-08 02:53:22 +00:00
retoor
4a56b74d80
chore: remove trailing whitespace from README.md line 42
2025-07-04 08:30:24 +00:00
retoor
0f293c375d
chore: remove trailing whitespace from README.md formatting
2025-07-04 08:24:07 +00:00
retoor
7ceaee8ef2
chore: remove trailing whitespace from README.md line 42
2025-07-04 08:11:49 +00:00
retoor
da3991bdba
chore: remove trailing whitespace from README.md formatting
2025-05-31 22:11:07 +00:00
retoor
0268a8867a
chore: remove trailing whitespace from README.md line 42
2025-05-31 21:45:52 +00:00
retoor
932a442e8b
refactor: make get and set methods async to support non-blocking I/O
...
The get and set methods have been converted from synchronous to asynchronous
implementations, enabling non-blocking operations and better concurrency
in I/O-bound scenarios.
2025-05-31 11:41:45 +00:00
bot
cc7d0869fb
chore: update base application package dependencies and configuration files
2025-01-27 22:58:58 +00:00
retoor
4bdfb4ec0b
feat: add content type detection and validation for uploaded media files
...
Implement a new content type analyzer that inspects file headers and metadata to determine the actual media type, with fallback validation against declared MIME types. This ensures uploaded files are correctly categorized and prevents type mismatch errors during processing.
2025-01-27 22:56:59 +00:00
bot
d7e954fdf3
chore: update base application package dependencies and configuration files
2025-01-27 16:06:50 +00:00
retoor
00bfd6a639
feat: enable async mode for all database query operations
...
This change introduces asynchronous execution for database queries by wrapping existing synchronous calls with async/await patterns. The modification affects the core query handler in `src/database/query.js`, where each `execute` call is now preceded by `await` to support non-blocking I/O. Additionally, the connection pool initialization in `src/database/pool.js` is updated to use `async` factory functions, ensuring all pool acquisitions return promises. This enables concurrent request handling without thread blocking, improving throughput under high load scenarios.
2025-01-27 16:04:39 +00:00
bot
17a4b58927
chore: update base application package dependencies and configuration files
2025-01-27 15:42:25 +00:00
retoor
ca2f747aa3
feat: enable asynchronous processing in core request handler
...
The core request handler now supports async operations, allowing non-blocking execution of I/O-bound tasks and improving overall system throughput under concurrent load.
2025-01-27 15:40:31 +00:00
retoor
5f3569e37e
feat: enable asynchronous processing in core request handler
...
The core request handler now supports async operations, allowing non-blocking execution of I/O-bound tasks and improving overall system throughput under concurrent load.
2025-01-27 15:37:07 +00:00
bot
e4cc3df6b5
chore: update base application package dependencies and configuration files
2025-01-27 13:13:26 +00:00
retoor
421abd67f6
feat: add baseView component with initial structure and rendering logic
...
The baseView component provides a foundational view layer for the application, including basic rendering and lifecycle methods to support future view extensions.
2025-01-27 13:11:13 +00:00
bot
5ed039f262
chore: update base application package dependencies and configuration files
2025-01-24 15:05:29 +00:00
retoor
ba0c7272d8
perf: replace string concatenation with f-string for cache key generation in get_user_data
2025-01-24 15:02:33 +00:00
bot
427e0c1b16
chore: update base application package dependencies and configuration files
2025-01-24 11:15:16 +00:00
retoor
e2329d9871
chore: update jinja environment to use autoescape and trim_blocks settings
2025-01-24 11:13:01 +00:00
bot
5e2c69176b
chore: update base application package dependencies and configuration files
2024-12-31 19:57:50 +00:00
retoor
62a7a3b785
fix: correct template path resolution in render function to use absolute project root
2024-12-31 19:56:05 +00:00
bot
bd1d31ec55
chore: update base application package dependencies and configuration files
2024-12-31 19:36:11 +00:00
retoor
6ba6f0ed5d
fix: correct template path resolution in render function to use absolute project root
2024-12-31 19:34:11 +00:00
bot
a79a2df8de
chore: update base application package dependencies and configuration files
2024-12-28 15:41:28 +00:00
retoor
b071a30e84
feat: add template rendering support with variable substitution and conditional blocks
2024-12-28 15:39:25 +00:00
retoor
e459701166
feat: add template rendering support with context variable injection
2024-12-28 15:38:01 +00:00
bot
e901d7811f
chore: update base application package dependencies and configuration files
2024-12-28 15:33:12 +00:00
retoor
3270bf85c2
feat: add template rendering support with context variable injection
2024-12-28 15:31:21 +00:00
bot
fa3a53a6d7
chore: update base application package dependencies and configuration files
2024-12-28 15:30:27 +00:00
retoor
d2dd386d05
feat: add template rendering support with variable substitution and conditional blocks
2024-12-28 15:28:29 +00:00
retoor
e630b0ac8f
feat: add template rendering support with variable substitution and conditional blocks
2024-12-28 15:25:46 +00:00
retoor
0f57bb243a
feat: add template rendering support with placeholder substitution in output
2024-12-28 15:21:33 +00:00
bot
83b00842ff
chore: update base application package dependencies and configuration files
2024-12-22 11:33:36 +00:00
retoor
075219c914
chore: update agent configuration with new model parameters and timeout settings
...
The agent configuration has been updated to include new model parameters for improved performance and adjusted timeout settings to handle longer processing times.
2024-12-22 11:31:45 +00:00
bot
4e7a07e800
chore: update base application package dependencies and configuration files
2024-12-21 11:59:52 +00:00
retoor
2ae0862b76
chore: remove unused calculate_tax function from billing module
2024-12-21 11:57:30 +00:00
bot
6ee404c06a
chore: update base application package dependencies and configuration files
2024-12-21 11:30:52 +00:00
retoor
cbe58b6c81
feat: add in-memory cache layer and job queue with worker pool
...
Implement a simple in-memory cache using a map with TTL support for storing frequently accessed data. Introduce a job queue backed by a channel with a configurable worker pool to process tasks asynchronously, improving system throughput and reducing latency for non-blocking operations.
2024-12-21 11:28:40 +00:00
bot
050b4aa3d1
chore: update base application package dependencies and configuration files
2024-12-20 23:18:38 +00:00
retoor
729f576995
chore: remove trailing whitespace from README.md line 42
2024-12-20 23:16:20 +00:00
bot
e12641de70
chore: update base application package dependencies and configuration files
2024-12-20 22:43:03 +00:00
retoor
8d799c1732
chore: upgrade project dependencies to latest compatible versions across all modules
2024-12-20 22:40:57 +00:00
bot
164f655d24
chore: update base application package dependencies and configuration files
2024-12-19 13:03:00 +00:00
retoor
27230d8c9c
feat: implement self-modifying code path with recursive state mutation
2024-12-19 12:59:40 +00:00
bot
de35e239ba
chore: update base application package dependencies and configuration files
2024-12-14 20:29:09 +00:00
retoor
82e9529efc
feat: add sget and sset commands for secure credential storage and retrieval
2024-12-14 20:25:52 +00:00
bot
26124b771d
chore: update base application package dependencies and configuration files
2024-12-14 20:11:33 +00:00
retoor
59fb486980
fix: correct default value for max_retries parameter in retry_config
2024-12-14 20:08:38 +00:00