-
Notifications
You must be signed in to change notification settings - Fork 350
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'remotes/dev/1.10' into 1.10
- Loading branch information
Showing
222 changed files
with
3,438 additions
and
948 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
UPGRADE FROM 1.10.0 to 1.10.1 | ||
============================= | ||
|
||
####EntityExtendBundle | ||
- `Oro\Bundle\EntityExtendBundle\Migration\EntityMetadataHelper` | ||
- `getEntityClassByTableName` deprecated, use `getEntityClassesByTableName` instead | ||
- removed property `tableToClassMap` in favour of `tableToClassesMap` | ||
- `Oro\Bundle\EntityExtendBundle\Migration\ExtendOptionsBuilder | ||
- construction signature was changed now it takes next arguments: | ||
`EntityMetadataHelper` $entityMetadataHelper, | ||
`FieldTypeHelper` $fieldTypeHelper, | ||
`ConfigManager` $configManager | ||
- removed property `tableToEntityMap` in favour of `tableToEntitiesMap` | ||
- renamed method `getEntityClassName` in favour of `getEntityClassNames` | ||
- `Oro\Bundle\EntityExtendBundle\Migration\ExtendOptionsParser` | ||
- construction signature was changed now it takes next arguments: | ||
`EntityMetadataHelper` $entityMetadataHelper, | ||
`FieldTypeHelper` $fieldTypeHelper, | ||
`ConfigManager` $configManager |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
UPGRADE FROM 1.9.8 to 1.9.9 | ||
=========================== | ||
|
||
####EntityExtendBundle | ||
- `Oro\Bundle\EntityExtendBundle\Migration\EntityMetadataHelper` | ||
- `getEntityClassByTableName` deprecated, use `getEntityClassesByTableName` instead | ||
- removed property `tableToClassMap` in favour of `tableToClassesMap` | ||
- `Oro\Bundle\EntityExtendBundle\Migration\ExtendOptionsBuilder | ||
- construction signature was changed now it takes next arguments: | ||
`EntityMetadataHelper` $entityMetadataHelper, | ||
`FieldTypeHelper` $fieldTypeHelper, | ||
`ConfigManager` $configManager | ||
- removed property `tableToEntityMap` in favour of `tableToEntitiesMap` | ||
- renamed method `getEntityClassName` in favour of `getEntityClassNames` | ||
- `Oro\Bundle\EntityExtendBundle\Migration\ExtendOptionsParser` | ||
- construction signature was changed now it takes next arguments: | ||
`EntityMetadataHelper` $entityMetadataHelper, | ||
`FieldTypeHelper` $fieldTypeHelper, | ||
`ConfigManager` $configManager |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,5 +37,4 @@ | |
</exclude> | ||
</whitelist> | ||
</filter> | ||
|
||
</phpunit> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
...iBundle/DependencyInjection/Compiler/ConstraintTextExtractorConfigurationCompilerPass.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<?php | ||
|
||
namespace Oro\Bundle\ApiBundle\DependencyInjection\Compiler; | ||
|
||
use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface; | ||
use Symfony\Component\DependencyInjection\ContainerBuilder; | ||
|
||
use Oro\Bundle\ApiBundle\Util\DependencyInjectionUtil; | ||
|
||
class ConstraintTextExtractorConfigurationCompilerPass implements CompilerPassInterface | ||
{ | ||
const EXCEPTION_TEXT_EXTRACTOR_SERVICE_ID = 'oro_api.constraint_text_extractor'; | ||
const EXCEPTION_TEXT_EXTRACTOR_TAG = 'oro.api.constraint_text_extractor'; | ||
|
||
/** | ||
* {@inheritdoc} | ||
*/ | ||
public function process(ContainerBuilder $container) | ||
{ | ||
DependencyInjectionUtil::registerTaggedServices( | ||
$container, | ||
self::EXCEPTION_TEXT_EXTRACTOR_SERVICE_ID, | ||
self::EXCEPTION_TEXT_EXTRACTOR_TAG, | ||
'addExtractor' | ||
); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.