You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+9-2Lines changed: 9 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,14 +5,21 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
6
6
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
7
7
8
-
## v1.11.0 - 2025-07-09
8
+
## v1.11.1 - 2025-11-13
9
+
10
+
### Added
11
+
12
+
-[Event Configuration]`propagateHeaders` allows forwarding headers from the original CDS context to the outbox call by specifying their names in an array.
13
+
14
+
15
+
## v1.11.0 - 2025-10-16
9
16
10
17
### Added
11
18
12
19
- Added `authInfo` to cds.User as CDS 9.3 deprecated `tokenInfo`.
13
20
- Disable the automatic processing of suspended tenants. Can be turned off using `disableProcessingOfSuspendedTenants`.
| impl | Path of the implementation class associated with the event. | - |
46
46
| type | Specifies the type of the event. | - |
47
47
| subType | Specifies the subtype of the event, further categorizing the event type. | - |
48
48
| load | Indicates the load of the event, affecting the processing concurrency. | 1 |
49
49
| retryAttempts | Number of retry attempts for failed events. Set to `-1` for infinite retries. | 3 |
50
50
| processAfterCommit | Indicates whether an event is processed immediately after the transaction, in which the event was written, has been committed. | true |
51
+
| propagateHeaders | Specifies which headers from the original CDS context should be forwarded to the outbox call. Provide an array of header names to propagate. |[]|
51
52
| parallelEventProcessing | Number of events of the same type and subType that can be processed in parallel. The maximum limit is 10. | 1 |
52
53
| transactionMode | Specifies the transaction mode for the event. For allowed values, refer to [Transaction Handling](/event-queue/transaction-handling/#transaction-modes). | isolated |
53
54
| selectMaxChunkSize | Number of events selected in a single batch. Set `checkForNextChunk` to `true` if you want to check for more available events after processing a batch. | 100 |
Copy file name to clipboardExpand all lines: package.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "@cap-js-community/event-queue",
3
-
"version": "1.11.0",
3
+
"version": "1.11.1",
4
4
"description": "An event queue that enables secure transactional processing of asynchronous and periodic events, featuring instant event processing with Redis Pub/Sub and load distribution across all application instances.",
0 commit comments