[PR #81] [MERGED] * Add possibility to save exceptions in file #107

Closed
opened 2026-01-23 11:22:05 +01:00 by admin · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/code-rhapsodie/dataflow-bundle/pull/81
Author: @AUDUL
Created: 10/7/2025
Status: Merged
Merged: 10/7/2025
Merged by: @AUDUL

Base: masterHead: exceptions-as-file


📝 Commits (8)

  • 189e323 * Add possibility to save exceptions in file
  • 1b08498 * Add possibility to save exceptions in file
  • bcd77f9 * Add possibility to save exceptions in file
  • 484ed6d * Add possibility to save exceptions in file
  • eef5e6f * Add possibility to save exceptions in file
  • 4996128 * Add possibility to save exceptions in file
  • 605a2bd * Add possibility to save exceptions in file
  • b35372a * Add possibility to save exceptions in file

📊 Changes

17 files changed (+220 additions, -15 deletions)

View changed files

📝 CHANGELOG.md (+3 -0)
📝 README.md (+14 -0)
📝 Tests/Processor/JobProcessorTest.php (+5 -2)
📝 src/Command/JobShowCommand.php (+4 -4)
📝 src/DependencyInjection/CodeRhapsodieDataflowExtension.php (+7 -1)
📝 src/DependencyInjection/Compiler/BusCompilerPass.php (+1 -1)
📝 src/DependencyInjection/Compiler/DataflowTypeCompilerPass.php (+1 -1)
📝 src/DependencyInjection/Compiler/DefaultLoggerCompilerPass.php (+1 -1)
src/DependencyInjection/Compiler/ExceptionCompilerPass.php (+29 -0)
📝 src/DependencyInjection/Configuration.php (+14 -0)
src/ExceptionsHandler/ExceptionHandlerInterface.php (+12 -0)
src/ExceptionsHandler/FilesystemExceptionHandler.php (+37 -0)
src/ExceptionsHandler/NullExceptionHandler.php (+17 -0)
src/Gateway/JobGateway.php (+52 -0)
📝 src/Processor/JobProcessor.php (+10 -4)
src/Resources/config/exceptions_services.yaml (+5 -0)
📝 src/Resources/config/services.yaml (+8 -1)

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/code-rhapsodie/dataflow-bundle/pull/81 **Author:** [@AUDUL](https://github.com/AUDUL) **Created:** 10/7/2025 **Status:** ✅ Merged **Merged:** 10/7/2025 **Merged by:** [@AUDUL](https://github.com/AUDUL) **Base:** `master` ← **Head:** `exceptions-as-file` --- ### 📝 Commits (8) - [`189e323`](https://github.com/code-rhapsodie/dataflow-bundle/commit/189e3231df6879f0908a02b6f83793c30e4cfb5c) * Add possibility to save exceptions in file - [`1b08498`](https://github.com/code-rhapsodie/dataflow-bundle/commit/1b08498691f4f8d0b46d0aa36c52ad7bb67fa02e) * Add possibility to save exceptions in file - [`bcd77f9`](https://github.com/code-rhapsodie/dataflow-bundle/commit/bcd77f99af7a61ca01f73d0788062249aa764a2a) * Add possibility to save exceptions in file - [`484ed6d`](https://github.com/code-rhapsodie/dataflow-bundle/commit/484ed6db7beb6e8ebca3fb76dd7e068532941853) * Add possibility to save exceptions in file - [`eef5e6f`](https://github.com/code-rhapsodie/dataflow-bundle/commit/eef5e6f3a0730d04cbe752a4dc5da5df4a8be8af) * Add possibility to save exceptions in file - [`4996128`](https://github.com/code-rhapsodie/dataflow-bundle/commit/4996128bd0ed80aa912bea4b8994779c8926c947) * Add possibility to save exceptions in file - [`605a2bd`](https://github.com/code-rhapsodie/dataflow-bundle/commit/605a2bd6f3a126eb0ae5cc960fbc36b506774efa) * Add possibility to save exceptions in file - [`b35372a`](https://github.com/code-rhapsodie/dataflow-bundle/commit/b35372ab269ab4680869d27492fca549ebd36eeb) * Add possibility to save exceptions in file ### 📊 Changes **17 files changed** (+220 additions, -15 deletions) <details> <summary>View changed files</summary> 📝 `CHANGELOG.md` (+3 -0) 📝 `README.md` (+14 -0) 📝 `Tests/Processor/JobProcessorTest.php` (+5 -2) 📝 `src/Command/JobShowCommand.php` (+4 -4) 📝 `src/DependencyInjection/CodeRhapsodieDataflowExtension.php` (+7 -1) 📝 `src/DependencyInjection/Compiler/BusCompilerPass.php` (+1 -1) 📝 `src/DependencyInjection/Compiler/DataflowTypeCompilerPass.php` (+1 -1) 📝 `src/DependencyInjection/Compiler/DefaultLoggerCompilerPass.php` (+1 -1) ➕ `src/DependencyInjection/Compiler/ExceptionCompilerPass.php` (+29 -0) 📝 `src/DependencyInjection/Configuration.php` (+14 -0) ➕ `src/ExceptionsHandler/ExceptionHandlerInterface.php` (+12 -0) ➕ `src/ExceptionsHandler/FilesystemExceptionHandler.php` (+37 -0) ➕ `src/ExceptionsHandler/NullExceptionHandler.php` (+17 -0) ➕ `src/Gateway/JobGateway.php` (+52 -0) 📝 `src/Processor/JobProcessor.php` (+10 -4) ➕ `src/Resources/config/exceptions_services.yaml` (+5 -0) 📝 `src/Resources/config/services.yaml` (+8 -1) </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
admin added the pull-request label 2026-01-23 11:22:05 +01:00
admin closed this issue 2026-01-23 11:22:05 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: code-rhapsodie/dataflow-bundle#107