All Versions
16
Latest Version
Avg Release Cycle
57 days
Latest Release
1234 days ago

Changelog History
Page 2

  • v7.4.2 Changes

    August 11, 2020

    ๐Ÿš€ This release fixes #1048 and #1017 issues with indexing failure for item IDs that contain slashes.

  • v7.4.1 Changes

    November 26, 2019

    ๐Ÿš€ This release solves the BC break issues introduced in 7.4.0.

    • ๐Ÿ—„ We added the suppress operator @ for the deprecation messages @trigger_error().
      ๐Ÿ‘ป With this approach we don't break existing application that convert PHP errors in Exception
      (e.g. using Laravel with issue babenkoivan/scout-elasticsearch-driver#297).
      ๐Ÿ—„ Using the @ operator is still possible to intercept the deprecation message using a custom error handler.
      #973
    • โž• Add missing leading slash in the URL of put mapping endpoint
      #970
    • ๐Ÿ›  Fix pre 7.2 endpoint class name with aliases + reapply fix #947.
      This PR solved the unexpected BC break introduce in 7.4.0 with the code generation tool
      #968
  • v7.4.0 Changes

    November 19, 2019

    BC breaks:

    This version introduces some potential BC breaks:

    • ๐Ÿ‘‰ Using a deprecated parameter is notified triggering a E_USER_DEPRECATED error (e.g. using the type parameter will generate a Specifying types in urls has been deprecated deprecation message).
    • ๐Ÿ‘ป When delete with an empty id a Missing404Exception exception is thrown. Previously it was a InvalidArgumentException.

    ๐Ÿ”„ Changelog:

  • v7.3.0 Changes

    September 30, 2019

    Support for Elasticsearch v7.3.

    • โž• Added support for simplified access to the X-Opaque-Id header #952
    • โž• Added the HTTP port in the log messages #950
    • ๐Ÿ›  Fixed hostname with underscore (ClientBuilder::prependMissingScheme) #949
    • โœ‚ Removed unused Monolog classes in ClientBuilder#948

    Note: this release is also compatible with Elasticsearch v7.2.

  • v7.2.2 Changes

    August 30, 2019
    • Reintroduced the optional parameter in Elasticsearch\Namespaces\IndicesNamespace::getAliases().
      ๐Ÿ›  This fixes the BC break introduced in 7.2.0 and 7.2.1 #947
  • v7.2.1 Changes

    August 27, 2019
    • ๐Ÿšš Reintroduced Elasticsearch\Namespaces\IndicesNamespace::getAliases() as proxy to IndicesNamespace::getAlias() to prevent BC breaks. The getAliases() is marked as deprecated and it will be removed from elasticsearch-php 8.0 #943

    ๐Ÿ“„ Docs

    • ๐Ÿ›  Fixed missing put mapping code snippet in code examples #938