Skip to content

Commit 69def99

Browse files
authored
Merge pull request #1657 from deguif/update-changelog
Update changelog
2 parents af43b39 + ca0e986 commit 69def99

File tree

1 file changed

+32
-16
lines changed

1 file changed

+32
-16
lines changed

CHANGELOG-6.0.md

Lines changed: 32 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,35 @@ in 6.0 versions.
1111
* Dropped Symfony 3 support.
1212
* Dropped Elasticsearch 5 and 6 support.
1313
* Dropped PHP 7.1 support.
14-
* Removed `FOS\ElasticaBundle\Exception\InvalidArgumentTypeException`
15-
* [BC break] Signature of method `FOS\ElasticaBundle\HybridResult::getResult()` was changed.
16-
* [BC break] Signature of method `FOS\ElasticaBundle\Finder\FinderInterface::find()` was changed.
17-
* [BC break] Signature of method `FOS\ElasticaBundle\Persister\ObjectPersisterInterface::handlesObject()` was changed.
18-
* [BC break] Signature of method `FOS\ElasticaBundle\Provider\PagerProviderInterface::provide()` was changed.
19-
* [BC break] Signature of methods `getPager`, `getOptions` and `getObjectPersister` from interface `FOS\ElasticaBundle\Persister\Event\PersistEvent` were changed.
20-
* [BC break] Signature of methods `getNbResults`, `getNbPages`, `getCurrentPage`, `setCurrentPage`, `getMaxPerPage` and `setMaxPerPage` from interface `FOS\ElasticaBundle\Provider\PagerInterface` were changed.
21-
* [BC break] Signature of methods `findPaginated`, `createPaginatorAdapter` and `createRawPaginatorAdapter` from interface `FOS\ElasticaBundle\Finder\PaginatedFinderInterface` were changed.
22-
* [BC break] Signature of methods `request`, `getIndex`, `getIndexTemplate` and `setStopwatch` from class `FOS\ElasticaBundle\Elastica\Client` were changed.
23-
* [BC break] Signature of methods `logQuery`, `getNbQueries` and `getQueries` from class `FOS\ElasticaBundle\Logger\ElasticaLogger` were changed.
24-
* [BC break] Signature of methods `addIndex`, `getRepository` and `getRepositoryName` from class `FOS\ElasticaBundle\Manager\RepositoryManager` were changed.
25-
* [BC break] Signature of methods `find`, `findHybrid`, `findPaginated` and `createPaginatorAdapter` from class `FOS\ElasticaBundle\Repository` were changed.
26-
* [BC break] Removed `Elastica\Type`.
27-
* [BC break] Removed `_parent`.
28-
* [BC Break] Removed `FOS\ElasticaBundle\Persister\Event\Events` class, use class events instead.
29-
* [BC break] Renamed `FOS\ElasticaBundle\Persister\Event\OnExceptionEvent::setIgnore()` to `FOS\ElasticaBundle\Persister\Event\OnExceptionEvent::setIgnored()`.
14+
* Removed `FOS\ElasticaBundle\Exception\InvalidArgumentTypeException`.
15+
* **[BC break]** Changed signature of method `FOS\ElasticaBundle\Finder\FinderInterface::find()`.
16+
* **[BC break]** Changed signature of method `FOS\ElasticaBundle\HybridResult::getResult()`.
17+
* **[BC break]** Changed signature of method `FOS\ElasticaBundle\Persister\ObjectPersisterInterface::handlesObject()`.
18+
* **[BC break]** Changed signature of method `FOS\ElasticaBundle\Provider\PagerProviderInterface::provide()`.
19+
* **[BC break]** Changed signature of methods `getPager`, `getOptions` and `getObjectPersister` from interface `FOS\ElasticaBundle\Persister\Event\PersistEvent`.
20+
* **[BC break]** Changed signature of methods `getNbResults`, `getNbPages`, `getCurrentPage`, `setCurrentPage`, `getMaxPerPage` and `setMaxPerPage` from interface `FOS\ElasticaBundle\Provider\PagerInterface`.
21+
* **[BC break]** Changed signature of methods `findPaginated`, `createPaginatorAdapter` and `createRawPaginatorAdapter` from interface `FOS\ElasticaBundle\Finder\PaginatedFinderInterface`.
22+
* **[BC break]** Changed signature of methods `request`, `getIndex`, `getIndexTemplate` and `setStopwatch` from class `FOS\ElasticaBundle\Elastica\Client`.
23+
* **[BC break]** Changed signature of methods `logQuery`, `getNbQueries` and `getQueries` from class `FOS\ElasticaBundle\Logger\ElasticaLogger`.
24+
* **[BC break]** Changed signature of methods `addIndex`, `getRepository` and `getRepositoryName` from class `FOS\ElasticaBundle\Manager\RepositoryManager`.
25+
* **[BC break]** Changed signature of methods `find`, `findHybrid`, `findPaginated` and `createPaginatorAdapter` from class `FOS\ElasticaBundle\Repository`.
26+
* **[BC break]** Removed `Elastica\Type`.
27+
* **[BC break]** Removed `_parent`.
28+
* **[BC break]** Removed `FOS\ElasticaBundle\Event\IndexPopulateEvent` constants for event names, use event classes instead:
29+
- `PRE_INDEX_POPULATE` => `FOS\ElasticaBundle\Event\PreIndexPopulateEvent`
30+
- `POST_INDEX_POPULATE` => `FOS\ElasticaBundle\Event\PostIndexPopulateEvent`
31+
* **[BC break]** Removed `FOS\ElasticaBundle\Event\IndexResetEvent` constants for event names, use event classes instead:
32+
- `PRE_INDEX_RESET` => `FOS\ElasticaBundle\Event\PreIndexResetEvent`
33+
- `POST_INDEX_RESET` => `FOS\ElasticaBundle\Event\PostIndexResetEvent`
34+
* **[BC break]** Removed `FOS\ElasticaBundle\Event\TransformEvent` constants for event names, use event classes instead:
35+
- `PRE_TRANSFORM` => `FOS\ElasticaBundle\Event\PreTransformEvent`
36+
- `POST_TRANSFORM` => `FOS\ElasticaBundle\Event\PostTransformEvent`
37+
* **[BC break]** Removed `FOS\ElasticaBundle\Persister\Event\Events` class, use event classes instead:
38+
- `ON_EXCEPTION` => `FOS\ElasticaBundle\Persister\Event\OnExceptionEvent`
39+
- `POST_ASYNC_INSERT_OBJECTS` => `FOS\ElasticaBundle\Persister\Event\PostAsyncInsertObjectsEvent`
40+
- `PRE_INSERT_OBJECTS` => `FOS\ElasticaBundle\Persister\Event\PreInsertObjectsEvent`
41+
- `POST_INSERT_OBJECTS` => `FOS\ElasticaBundle\Persister\Event\PostInsertObjectsEvent`
42+
- `PRE_PERSIST` => `FOS\ElasticaBundle\Persister\Event\PrePersistEvent`
43+
- `POST_PERSIST` => `FOS\ElasticaBundle\Persister\Event\PostPersistEvent`
44+
- `PRE_FETCH_OBJECTS` => `FOS\ElasticaBundle\Persister\Event\PreFetchObjectsEvent`
45+
* **[BC break]** Renamed `FOS\ElasticaBundle\Persister\Event\OnExceptionEvent::setIgnore()` to `FOS\ElasticaBundle\Persister\Event\OnExceptionEvent::setIgnored()`.

0 commit comments

Comments
 (0)