[PR #32] [MERGED] some eZ Platform 3 change #38

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

📋 Pull Request Information

Original PR: https://github.com/code-rhapsodie/ezdataflow-bundle/pull/32
Author: @macintoshplus
Created: 9/15/2020
Status: Merged
Merged: 9/16/2020
Merged by: @jeremycr

Base: platform3Head: platform3


📝 Commits (9)

  • 996aeb7 bump eZ required version
  • 06697e0 add controller tag
  • d2ac8a3 enable autowire and autoconfigure on controller
  • fe27047 fix twig funtion return test
  • 4a2c042 use contracts dependency for translation interface instead of Component
  • e6576b8 add backward compatibility for TranslatorInterface
  • 97825e5 fix namespace
  • a989557 fix CS
  • 3ce40b3 fix JobController and PR request

📊 Changes

25 files changed (+81 additions, -190 deletions)

View changed files

📝 composer.json (+2 -2)
📝 src/Controller/DashboardController.php (+2 -21)
📝 src/Controller/JobController.php (+9 -11)
📝 src/Controller/ScheduledDataflowController.php (+34 -42)
📝 src/Core/Content/ContentCreator.php (+0 -6)
📝 src/Core/Content/ContentUpdater.php (+0 -4)
📝 src/Core/Field/ContentStructFieldFiller.php (+1 -6)
📝 src/Core/Field/ContentStructFieldFillerInterface.php (+0 -5)
📝 src/Core/Field/DefaultFieldValueCreator.php (+0 -4)
📝 src/Core/Field/FieldValueCreatorInterface.php (+1 -9)
📝 src/Exception/UnknownFieldException.php (+0 -3)
📝 src/Factory/ContentStructureFactory.php (+2 -8)
📝 src/Factory/ContentStructureFactoryInterface.php (+0 -4)
📝 src/Gateway/JobGateway.php (+0 -3)
📝 src/Gateway/ScheduledDataflowGateway.php (+0 -5)
📝 src/Matcher/LocationMatcher.php (+0 -2)
📝 src/Matcher/LocationMatcherInterface.php (+0 -2)
📝 src/Model/ContentCreateStructure.php (+7 -19)
📝 src/Model/ContentStructure.php (+0 -9)
📝 src/Model/ContentUpdateStructure.php (+0 -11)

...and 5 more files

📄 Description

  • change version required in composer.json file
  • add controller tag, autowire and autoconfigure
  • fix twig getFunction return check on error
  • fix TranslatorInterface change beetwen Symfony 3.4 and Symfony 5.0

🔄 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/ezdataflow-bundle/pull/32 **Author:** [@macintoshplus](https://github.com/macintoshplus) **Created:** 9/15/2020 **Status:** ✅ Merged **Merged:** 9/16/2020 **Merged by:** [@jeremycr](https://github.com/jeremycr) **Base:** `platform3` ← **Head:** `platform3` --- ### 📝 Commits (9) - [`996aeb7`](https://github.com/code-rhapsodie/ezdataflow-bundle/commit/996aeb7b901b40df057a149845aacd9753dda989) bump eZ required version - [`06697e0`](https://github.com/code-rhapsodie/ezdataflow-bundle/commit/06697e08dc4976af0b299c48f814195ea300a9c1) add controller tag - [`d2ac8a3`](https://github.com/code-rhapsodie/ezdataflow-bundle/commit/d2ac8a34ab2e8b6dbd98722a1f1c577957ffc753) enable autowire and autoconfigure on controller - [`fe27047`](https://github.com/code-rhapsodie/ezdataflow-bundle/commit/fe27047df377532d9c9505667af4767d0c1eff6d) fix twig funtion return test - [`4a2c042`](https://github.com/code-rhapsodie/ezdataflow-bundle/commit/4a2c0422ceaaa3970c24351987099dcab49f8de8) use contracts dependency for translation interface instead of Component - [`e6576b8`](https://github.com/code-rhapsodie/ezdataflow-bundle/commit/e6576b8c3c03f45201fdc27416e679ecb7814e0b) add backward compatibility for TranslatorInterface - [`97825e5`](https://github.com/code-rhapsodie/ezdataflow-bundle/commit/97825e55accecc6b874fb141fa0da12eaae40317) fix namespace - [`a989557`](https://github.com/code-rhapsodie/ezdataflow-bundle/commit/a989557c51eb6b2304ccc6a08df1a602c4d7262e) fix CS - [`3ce40b3`](https://github.com/code-rhapsodie/ezdataflow-bundle/commit/3ce40b32f0149e1e616a16bc1f0cd3b1d4774c83) fix JobController and PR request ### 📊 Changes **25 files changed** (+81 additions, -190 deletions) <details> <summary>View changed files</summary> 📝 `composer.json` (+2 -2) 📝 `src/Controller/DashboardController.php` (+2 -21) 📝 `src/Controller/JobController.php` (+9 -11) 📝 `src/Controller/ScheduledDataflowController.php` (+34 -42) 📝 `src/Core/Content/ContentCreator.php` (+0 -6) 📝 `src/Core/Content/ContentUpdater.php` (+0 -4) 📝 `src/Core/Field/ContentStructFieldFiller.php` (+1 -6) 📝 `src/Core/Field/ContentStructFieldFillerInterface.php` (+0 -5) 📝 `src/Core/Field/DefaultFieldValueCreator.php` (+0 -4) 📝 `src/Core/Field/FieldValueCreatorInterface.php` (+1 -9) 📝 `src/Exception/UnknownFieldException.php` (+0 -3) 📝 `src/Factory/ContentStructureFactory.php` (+2 -8) 📝 `src/Factory/ContentStructureFactoryInterface.php` (+0 -4) 📝 `src/Gateway/JobGateway.php` (+0 -3) 📝 `src/Gateway/ScheduledDataflowGateway.php` (+0 -5) 📝 `src/Matcher/LocationMatcher.php` (+0 -2) 📝 `src/Matcher/LocationMatcherInterface.php` (+0 -2) 📝 `src/Model/ContentCreateStructure.php` (+7 -19) 📝 `src/Model/ContentStructure.php` (+0 -9) 📝 `src/Model/ContentUpdateStructure.php` (+0 -11) _...and 5 more files_ </details> ### 📄 Description * change version required in `composer.json` file * add controller tag, `autowire` and `autoconfigure` * fix twig `getFunction` return check on error * fix `TranslatorInterface` change beetwen Symfony 3.4 and Symfony 5.0 --- <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:23:04 +01:00
admin closed this issue 2026-01-23 11:23:04 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: code-rhapsodie/ezdataflow-bundle#38