@forzalabs/remora 1.2.11 → 1.2.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +15 -0
- package/index.js +21468 -2231
- package/json_schemas/consumer-schema.json +17 -0
- package/json_schemas/source-schema.json +69 -0
- package/package.json +1 -1
- package/workers/ExecutorWorker.js +21457 -2220
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,21 @@ The format is based on Keep a Changelog, and this project adheres to Semantic Ve
|
|
|
6
6
|
|
|
7
7
|
## Unreleased
|
|
8
8
|
|
|
9
|
+
## V 1.2.12 - 2026-07-02
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
- Added IAM-role based authentication for AWS sources (S3, Redshift, SQS) via a shared `resolveAwsCredentials` resolver: `method: "implicit"` (or `"iam"`) uses the AWS SDK default credential chain — including EC2/ECS/EKS instance/task roles — and `method: "arn"` assumes an IAM role via STS with auto-refreshing temporary credentials, in addition to the existing static access keys
|
|
13
|
+
- Added `roleArn`, `roleSessionName`, and `externalId` authentication fields to `ISourceAuthentication` and the source JSON schema for STS AssumeRole configuration
|
|
14
|
+
- Added `method`, `roleArn`, `roleSessionName`, and `externalId` metadata fields to consumer QUEUE trigger configuration so SQS queue polling can also authenticate via IAM roles / STS
|
|
15
|
+
- Added source validation for AWS credential methods: `arn` requires `roleArn`, and `access-secret-key` requires `accessKey` and `secretKey`
|
|
16
|
+
- Added a cross-account `arn` S3 example source to the source JSON schema
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
- Changed the AWS drivers (S3 source/destination, Redshift) and the SQS `QueueManager` to resolve credentials through the shared resolver, so all AWS services handle credentials identically
|
|
20
|
+
|
|
21
|
+
### Fixed
|
|
22
|
+
- Fixed the AWS drivers silently ignoring IAM instance/task roles: S3 and Redshift always built a static-key credentials object (even when keys were empty), which disabled the AWS SDK default credential chain. Credentials are now omitted when no static keys are configured, letting the SDK discover instance/task roles
|
|
23
|
+
|
|
9
24
|
## V 1.2.11 - 2026-06-30
|
|
10
25
|
|
|
11
26
|
### Added
|