Andras Bacsai
a2a2bfa6c9
feat(user-management): implement user deletion command with phased resource and subscription cancellation, including dry run option
2025-09-13 15:08:30 +02:00
Andras Bacsai
8e155f25b3
refactor(environment): streamline environment variable handling by replacing sorting methods with direct property access and enhancing query ordering for improved performance
2025-09-12 12:09:03 +02:00
Andras Bacsai
a0b08fae5d
fix(feedback): update feedback email address to improve communication with users
2025-09-11 20:23:07 +02:00
Andras Bacsai
20ad2165e7
feat(environment): introduce 'is_buildtime_only' attribute to environment variables for improved build-time configuration
2025-09-11 17:38:16 +02:00
Andras Bacsai
5b3b4bbc43
refactor(environment): remove 'is_build_time' attribute from environment variable handling across the application to simplify configuration
2025-09-11 16:51:56 +02:00
Andras Bacsai
60374c214e
refactor(deployment): update environment file handling in Docker commands to use '/artifacts/' path and streamline variable management
2025-09-11 16:22:03 +02:00
Andras Bacsai
ab0786f5a0
feat(environment): add 'is_literal' attribute to environment variable for enhanced configuration options
2025-09-11 15:25:44 +02:00
Andras Bacsai
501e6a2650
refactor(environment): standardize service name formatting by replacing '-' and '.' with '_' in environment variable keys
2025-09-11 13:59:02 +02:00
Andras Bacsai
13af4811f5
feat(storages): add method to retrieve the first storage ID for improved stability in storage display
2025-09-11 13:41:22 +02:00
Andras Bacsai
5e0b86f322
Merge pull request #6170 from mindedtech/Add-SERVICE_NAME-variable-for-docker-compose-services
...
Add SERVICE_NAME variable for docker compose services
2025-09-11 13:06:10 +02:00
Andras Bacsai
b46429e879
refactor(deployment): add environment variable copying logic to Docker build commands for pull requests
2025-09-11 13:01:45 +02:00
Andras Bacsai
0db2835565
fix(application): add functionality to stop and remove Docker containers on server
2025-09-11 12:39:28 +02:00
Andras Bacsai
c8f49f29c0
refactor(application): enhance environment variable retrieval in configuration change check for improved accuracy
2025-09-11 12:29:57 +02:00
Andras Bacsai
e74da06465
refactor(clone): consolidate application cloning logic into a dedicated function for improved maintainability and readability
2025-09-11 10:38:08 +02:00
peaklabs-dev
3e9dd6a7bf
chore: remove webhooks table cleanup
2025-09-10 19:56:15 +02:00
Andras Bacsai
d9ebf3b142
refactor(webhook): remove Webhook model and related logic; add migrations to drop webhooks and kubernetes tables
2025-09-10 19:35:53 +02:00
Andras Bacsai
f64622c764
refactor(models): remove 'is_readonly' attribute from multiple database models for consistency
2025-09-10 19:34:49 +02:00
Andras Bacsai
49a2942836
fix(deployment): add COOLIFY_* environment variables to Nixpacks build context for enhanced deployment configuration
2025-09-10 16:15:08 +02:00
Andras Bacsai
2c8f5415f1
feat(database-backup): enhance error handling and output management in DatabaseBackupJob
2025-09-10 16:13:08 +02:00
Andras Bacsai
1c08d32b85
refactor(database): remove volume_configuration_dir and streamline configuration directory usage in MongoDB and PostgreSQL handlers
2025-09-10 16:12:53 +02:00
Andras Bacsai
48d3b3d263
refactor(deployment): add validation for pull request existence in deployment process to enhance error handling
2025-09-10 14:31:29 +02:00
Andras Bacsai
d10e4fa388
refactor(deployment): streamline next deployment queuing logic by repositioning queue_next_deployment call
2025-09-10 13:26:35 +02:00
Andras Bacsai
52312e9de6
refactor(github-webhook): restructure application processing by grouping applications by server for improved deployment handling
2025-09-10 09:30:43 +02:00
Andras Bacsai
40f2471c5a
feat(ssh-multiplexing): add connection age metadata handling to improve multiplexed connection management
2025-09-10 08:38:36 +02:00
Andras Bacsai
b433f17dac
feat(ssh-multiplexing): enhance multiplexed connection management with health checks and metadata caching
2025-09-10 08:19:38 +02:00
Andras Bacsai
cead87d650
refactor(private-key): remove debugging statement from storeInFileSystem method for cleaner code
2025-09-10 08:19:25 +02:00
Andras Bacsai
a60d6dadc7
fix(private-key): implement transaction handling and error verification for private key storage operations
2025-09-09 16:46:38 +02:00
Andras Bacsai
a06c79776e
feat(dev-command): dispatch CheckHelperImageJob during instance initialization to enhance setup process
2025-09-09 16:46:24 +02:00
Andras Bacsai
1ca94b90da
fix(proxy): replace CheckConfiguration with GetProxyConfiguration and SaveConfiguration with SaveProxyConfiguration for improved clarity and consistency in proxy management
2025-09-09 12:52:19 +02:00
Andras Bacsai
feacedbb04
refactor(file-transfer): replace base64 encoding with direct file transfer method in various components for improved clarity and efficiency
2025-09-09 11:10:38 +02:00
Andras Bacsai
b1a2938f84
fix(ScheduledTaskJob): replace generic Exception with NonReportableException for better error handling
2025-09-09 09:30:44 +02:00
Andras Bacsai
a7671ed379
refactor(dns-validation): rename DNS validation functions for consistency and clarity, and remove unused code
2025-09-09 09:00:35 +02:00
Andras Bacsai
45ca76ed1c
fix(LocalFileVolume): add missing directory creation command for workdir in saveStorageOnServer method
2025-09-09 08:56:00 +02:00
Arnaud B
e23ab1e621
feat(deployment): add SERVICE_NAME variables for service discovery
...
This change introduces automatically generated `SERVICE_NAME_<SERVICE>`
environment variables for each service within a Docker Compose deployment.
This allows services to reliably reference each other by name, which is particularly
useful in pull request environments where container names are dynamically suffixed.
- The application parser now generates and injects these `SERVICE_NAME` variables
into the environment of all services in the compose file.
- `ApplicationDeploymentJob` is updated to correctly handle and filter these
new variables during deployment.
- UI components and the `EnvironmentVariableProtection` trait have been updated
to make these generated variables read-only, preventing accidental modification.
This commit introduces two new helper functions to standardize resource naming
for pull request deployments:
- `addPreviewDeploymentSuffix()`: Generates a consistent suffix format (-pr-{id})
for resource names in preview deployments
- `generateDockerComposeServiceName()`: Creates SERVICE_NAME environment variables
for Docker Compose services
2025-09-08 15:22:44 +02:00
Andras Bacsai
18068857b1
refactor(file-transfer): replace base64 encoding with direct file transfer method across multiple database actions for improved clarity and efficiency
2025-09-08 14:04:24 +02:00
Andras Bacsai
852b2688d9
refactor(error-handling): remove ray debugging statements from CheckUpdates and shared helper functions to clean up error reporting
2025-09-08 14:03:27 +02:00
Andras Bacsai
a243b99df4
feat(exceptions): introduce NonReportableException to handle known errors and update Handler for selective reporting
2025-09-08 09:18:25 +02:00
Andras Bacsai
45c75ad9c1
feat(ssh): add Sentry tracking for SSH retry events to enhance error monitoring
2025-09-07 18:57:20 +02:00
Andras Bacsai
4bd29bf966
refactor(ssh): enhance error handling in SSH command execution and improve connection validation logging
2025-09-07 18:45:44 +02:00
Andras Bacsai
579cc25898
fix(ssh): introduce SshRetryHandler and SshRetryable trait for enhanced SSH command retry logic with exponential backoff and error handling
2025-09-07 17:17:35 +02:00
Andras Bacsai
b847740924
refactor(command): simplify SSH command retry logic by removing unnecessary logging and improving delay calculation
2025-09-07 16:38:11 +02:00
Andras Bacsai
b6176d905b
feat(command): implement SSH command retry logic with exponential backoff and logging for better error handling
2025-09-07 10:26:23 +02:00
Andras Bacsai
2d135071c7
refactor(command): replace forceDelete calls with DeleteResourceJob dispatch for all stuck resources in cleanup process
2025-09-05 19:28:08 +02:00
Andras Bacsai
8c5c249c6a
refactor(webhook): replace direct forceDelete calls with DeleteResourceJob dispatch for application previews
2025-09-05 19:27:59 +02:00
Andras Bacsai
136ca08305
refactor(command): streamline Init command by removing unnecessary options and enhancing error handling for various operations
2025-09-05 19:27:49 +02:00
Andras Bacsai
a10e51b2c4
fix(webhook): replace delete with forceDelete for application previews to ensure immediate removal
2025-09-05 17:50:33 +02:00
Andras Bacsai
28d05f759e
refactor(command): remove InitChangelog command as it is no longer needed
2025-09-05 17:45:15 +02:00
Andras Bacsai
9c3345318a
fix(user): ensure email attributes are stored in lowercase for consistency and prevent case-related issues
2025-09-05 17:44:34 +02:00
Andras Bacsai
49bd0a2a01
refactor(command): improve database collection logic for deletion command by using unique identifiers and enhancing user experience
2025-09-05 17:43:19 +02:00
Andras Bacsai
581b649cd7
fix(command): enhance cleanup process for stuck application previews by adding force delete for trashed records
2025-09-05 17:43:05 +02:00