Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion docs/flows/known-limits.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,11 @@ Files from actions or triggers are stored in the database/S3 to support retries
</Info>

- **Maximum File Size**: **10 MB**
(Configurable via `AP_MAX_FILE_SIZE_MB`, default: **4 MB**)
(Configurable via `AP_MAX_FILE_SIZE_MB`, default: **25 MB**)

- **Maximum Flow Run Log Size**: **25 MB**
(Configurable via `AP_MAX_FLOW_RUN_LOG_SIZE_MB`, default: **25 MB**)
> This is the total combined size of all inputs and outputs for each step in a single flow run.
---

### Key / Value Storage Limits
Expand Down
12 changes: 8 additions & 4 deletions docs/install/configuration/breaking-changes.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,16 @@ icon: "hammer"

## 0.77.0
### What has changed?
- If you are on the embed plan, the "Use a Template" dialog is no longer shown when clicking the "New Flow" button.
- We removed /flow-templates endpoints and replaced them with /templates

- For Embed Plan users: the "Use a Template" dialog no longer appears when clicking the "New Flow" button.
- The `/flow-templates` API endpoints have been removed and replaced by `/templates`.
- Log size configuration has changed: `AP_MAX_FILE_SIZE_MB` no longer controls flow run logs. Use `AP_MAX_FLOW_RUN_LOG_SIZE_MB` instead.

### Do you need to take action?
- If you are on the embed plan, update your implementation to redirect your users to the `/templates` page instead.
- Check out new endpoints https://www.activepieces.com/docs/endpoints/templates/schema

- If you are on the embed plan, update your implementation to redirect users to the `/templates` page.
- Review the new endpoints documentation: [Templates API Schema](https://www.activepieces.com/docs/endpoints/templates/schema).
- If you use a custom value for `AP_MAX_FILE_SIZE_MB`, be sure to also set `AP_MAX_FLOW_RUN_LOG_SIZE_MB` accordingly.

## 0.75.0

Expand Down
3 changes: 2 additions & 1 deletion docs/install/configuration/environment-variables.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,8 @@ it will produce these values. </Tip>
| `AP_SMTP_PASSWORD` | The password for the SMTP server that activepieces uses to send emails | `None` | secret1234 |
| `AP_SMTP_SENDER_EMAIL` | The email address from which activepieces sends emails. | `None` | [email protected] |
| `AP_SMTP_SENDER_NAME` | The sender name activepieces uses to send emails.
| `AP_MAX_FILE_SIZE_MB` | The maximum allowed file size in megabytes for uploads including logs of flow runs. If logs exceed this size, they will be truncated which may cause flow execution issues. | `10` | `10` |
| `AP_MAX_FILE_SIZE_MB` | The maximum allowed file size (in megabytes) for **uploaded files** in steps or triggers. Files larger than this value will be rejected. This does **not** control flow run log size—see `AP_MAX_FLOW_RUN_LOG_SIZE_MB`. | `25` | `10` |
| `AP_MAX_FLOW_RUN_LOG_SIZE_MB` | The maximum allowed size (in megabytes) of the **flow run logs**—this is the total combined size of all inputs and outputs for each step in a single flow run. If logs exceed this size, they will be truncated, which may cause flow execution issues. | `25` | `25` |
| `AP_FILE_STORAGE_LOCATION` | The location to store files. Possible values are `DB` for storing files in the database or `S3` for storing files in an S3-compatible storage service. | `DB` | |
| `AP_PAUSED_FLOW_TIMEOUT_DAYS` | The maximum allowed pause duration in days for a paused flow, please note it can not exceed `AP_EXECUTION_DATA_RETENTION_DAYS` | `30` |
| `AP_MAX_RECORDS_PER_TABLE` | The maximum allowed number of records per table | `10000` | `10000`
Expand Down
Loading
Loading