Resolve #3437982 "Fixing an issue"
parent
ad38a0b5
No related branches found
Tags 2.0.1
Showing
- .gitlab-ci.yml 1 addition, 3 deletions.gitlab-ci.yml
- composer.json 5 additions, 4 deletionscomposer.json
- drush.services.yml 2 additions, 2 deletionsdrush.services.yml
- modules/data_pipelines_elasticsearch/data_pipelines_elasticsearch.install 2 additions, 2 deletions...elines_elasticsearch/data_pipelines_elasticsearch.install
- modules/data_pipelines_elasticsearch/src/Plugin/DatasetDestination/ElasticSearchDestination.php 34 additions, 31 deletions...rc/Plugin/DatasetDestination/ElasticSearchDestination.php
- modules/data_pipelines_elasticsearch/tests/src/Kernel/ElasticsearchDestinationDatasetTest.php 15 additions, 22 deletions.../tests/src/Kernel/ElasticsearchDestinationDatasetTest.php
- modules/data_pipelines_elasticsearch/tests/src/Kernel/ElasticsearchDestinationQueueTest.php 26 additions, 25 deletions...ch/tests/src/Kernel/ElasticsearchDestinationQueueTest.php
- modules/data_pipelines_elasticsearch/tests/src/Kernel/ElasticsearchDestinationTest.php 34 additions, 68 deletions...csearch/tests/src/Kernel/ElasticsearchDestinationTest.php
- modules/data_pipelines_elasticsearch/tests/src/Traits/ElasticsearchTestDestinationTrait.php 42 additions, 17 deletions...ch/tests/src/Traits/ElasticsearchTestDestinationTrait.php
- src/Commands/DataPipelinesCommands.php 39 additions, 14 deletionssrc/Commands/DataPipelinesCommands.php
- src/Destination/DatasetDestinationPluginBase.php 1 addition, 1 deletionsrc/Destination/DatasetDestinationPluginBase.php
- src/Destination/DatasetDestinationPluginInterface.php 3 additions, 3 deletionssrc/Destination/DatasetDestinationPluginInterface.php
- src/Entity/Dataset.php 31 additions, 26 deletionssrc/Entity/Dataset.php
- src/Entity/DatasetInterface.php 4 additions, 8 deletionssrc/Entity/DatasetInterface.php
- src/Form/DatasetBatchContext.php 157 additions, 0 deletionssrc/Form/DatasetBatchContext.php
- src/Form/DatasetBatchOperations.php 6 additions, 7 deletionssrc/Form/DatasetBatchOperations.php
- src/Plugin/QueueWorker/DestinationWorker.php 2 additions, 2 deletionssrc/Plugin/QueueWorker/DestinationWorker.php
- src/Traits/FieldValueTrait.php 1 addition, 1 deletionsrc/Traits/FieldValueTrait.php
- tests/modules/data_pipelines_test/src/Plugin/DatasetDestination/StateDestination.php 1 addition, 1 deletion...s_test/src/Plugin/DatasetDestination/StateDestination.php
- tests/src/Functional/DatasetUiTest.php 1 addition, 1 deletiontests/src/Functional/DatasetUiTest.php
... | ... | @@ -16,13 +16,14 @@ |
} | ||
}, | ||
"require": { | ||
"drupal/core": "^10.1 || ^11", | ||
"drupal/entity": "^1.0", | ||
"softcreatr/jsonpath": "^0.7 || ^0.8", | ||
"php": ">=8.1", | ||
"drupal/core": "^10.1 || ^11" | ||
"softcreatr/jsonpath": "^0.9", | ||
"php": ">=8.3" | ||
}, | ||
"require-dev": { | ||
"elasticsearch/elasticsearch": "^7" | ||
"elasticsearch/elasticsearch": "^8", | ||
"dg/bypass-finals": "^1" | ||
}, | ||
"suggest": { | ||
"elasticsearch/elasticsearch": "Required for the data_pipelines_elasticsearch module" | ||
... | ... |
src/Form/DatasetBatchContext.php
0 → 100644
Please register or sign in to comment