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
5 changes: 3 additions & 2 deletions .github/prompts/prepare-middleware-release-notes.prompt.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
agent: agent
tools: ['read/problems', 'read/readFile', 'edit/createDirectory', 'edit/createFile', 'edit/editFiles', 'search', 'agent', 'github/get_file_contents', 'github/issue_read', 'github/list_issues', 'github/list_pull_requests', 'github/pull_request_read', 'github/search_code', 'github/search_issues', 'github/search_pull_requests']
tools: ['read/problems', 'read/readFile', 'edit/createDirectory', 'edit/createFile', 'edit/editFiles', 'search', 'github/get_file_contents', 'github/issue_read', 'github/list_issues', 'github/list_pull_requests', 'github/pull_request_read', 'github/search_code', 'github/search_issues', 'github/search_pull_requests', 'github/search_repositories', 'agent']
argument-hint: Provide the version to create releasenotes for
---

Expand All @@ -26,7 +26,8 @@ You are tasked with creating comprehensive release notes for the fiskaltrust Mid
- The affected queue packages are specified by the `queue-<package>` labels
- If the `queue` label is set then all queues are affected (Get all queue packages from the fiskaltrust/middleware repository workflow `.github/workflows/queue-package.yml`. Fetch the workflow files using `github/get_file_contents`.)
- The affected SCU packages are specified by the `scu-<market>-<package>` labels
- Fetch linked issues using `github/issue_read` to understand the context and requirements
- Fetch linked issues using `github/issue_read` to understand the context and requirements.
Also fetch issues that are linked from from other repositories.
- Use `web/githubRepo` to examine the code changes in the PR
- Analyze the technical implementation and business impact
- Draft a concise, user-focused release note entry.
Expand Down
12 changes: 11 additions & 1 deletion middleware/2026-01-29-1.3.81.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,17 @@ Additionally, the retry mechanism has been enhanced to handle more error scenari
### Affected packages:
- _fiskaltrust.Middleware.SCU.DE.FiskalyCertified_

## 🇧🇪🇬🇷🇪🇸🇵🇹 Bug Fix: Resolved issue with incorrect success states during exception handling ([fiskaltrust/middleware#586](https://github.com/fiskaltrust/middleware/pull/586))
## Enhancement: Configurable SQL command timeout for Entity Framework queues ([fiskaltrust/middleware#612](https://github.com/fiskaltrust/middleware/pull/612))

You can now configure the SQL command timeout for Entity Framework (EF) queues using the new `SqlCommandTimeoutSec` configuration parameter.
The default timeout is 180 seconds (3 minutes), which should be sufficient for most use cases.

To configure a custom timeout, add the `SqlCommandTimeoutSec` parameter to your queue configuration in the portal with the desired value in seconds.

### Affected packages:
- _fiskaltrust.Middleware.Queue.EF_

## �🇧🇪🇬🇷🇪🇸🇵🇹 Bug Fix: Resolved issue with incorrect success states during exception handling ([fiskaltrust/middleware#586](https://github.com/fiskaltrust/middleware/pull/586))

This fix addresses a critical issue where the Middleware incorrectly returned success states when uncaught exceptions occurred during receipt processing.
Previously, when an exception was thrown, the response would fail to properly mark the operation as failed, potentially leading to misleading status information.
Expand Down