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
6 changes: 6 additions & 0 deletions integrations/n8n/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
<!-- markdownlint-disable MD024 -->
# Changelog

## 2.0.4 (2026-04-08)

### Bug Fixes

- Fix file upload 403 error

## 2.0.3 (2026-04-08)

### Improvements
Expand Down
2 changes: 1 addition & 1 deletion integrations/n8n/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Or install from archive (Docker, custom n8n images):
# Download from GitHub Releases
# Find the latest n8n-nodes-pachca.tgz at:
# https://github.com/pachca/openapi/releases?q=n8n
wget https://github.com/pachca/openapi/releases/download/n8n-v2.0.2/n8n-nodes-pachca.tgz
wget https://github.com/pachca/openapi/releases/download/n8n-v2.0.4/n8n-nodes-pachca.tgz

# Via npm (recommended)
cd ~/.n8n/nodes && npm install ./n8n-nodes-pachca.tgz
Expand Down
1 change: 0 additions & 1 deletion integrations/n8n/nodes/Pachca/GenericFunctions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -743,7 +743,6 @@ export async function uploadFileToS3(
const MAX_RETRIES = 3;
for (let attempt = 0; attempt < MAX_RETRIES; attempt++) {
const s3Fields: Record<string, string> = {
'Content-Type': contentType,
'Content-Disposition': String(presigned['Content-Disposition']),
acl: String(presigned.acl),
policy: String(presigned.policy),
Expand Down
2 changes: 1 addition & 1 deletion integrations/n8n/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "n8n-nodes-pachca",
"version": "2.0.3",
"version": "2.0.4",
"description": "Pachca node for n8n workflow automation",
"license": "MIT",
"main": "index.js",
Expand Down
Loading