-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Elasticsearch 8.0 support #2
Conversation
…erval and fixed interval
I see that phpunit have to be updated. Code coverage not supported with php8 by this version |
👍 Let me check it |
Interestingly, tests passed for both versions as I tried locally. For now, with PHP 8.0.9, I tried PHPUnit 9.5.13 and 8.5.23 with coverage flag and both are working without any error. |
Looks great to me) |
I could not understand what I need to do related with |
Could you point where described breaking changes in es8 for this parameter? |
Inside the search part :
https://www.elastic.co/guide/en/elasticsearch/reference/master/release-notes-8.0.0.html |
I think we don't do anything. I will try to put a functional test for it. There is a parameter inside the Search class of this library, but we do not try to format the parameter's value. So, I think it is not this library's responsibility. |
Yeah you're right. We don't check format of indices boosts so no changes. |
We could introduce interface for the parameter, but looks it's not the way of this library |
Okay, here is the latest situation. I fetched the list from the release notes of the Elasticsearch page, and I checked the bullets one by one. I close some of them directly without changing the code because of their disinterests. Lastly, we have one issue now is related to sorting with nested fields.
I had not used it before. For this reason, I will investigate a little bit what the changes are. Then we can go through the PR to the main repository. Thanks. |
Okay so, as I see, nested-related deprecation changes are already done at 7.x version. |
Before :
After :
|
Here the list of changes :
Aggregation
Geo
Infra REST API
Search
([Fields API] _type is not returned in the response elastic/elasticsearch#68311))