plugin-changes.asciidoc 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. [discrete]
  2. [[breaking_80_plugin_changes]]
  3. ==== Plugin changes
  4. //NOTE: The notable-breaking-changes tagged regions are re-used in the
  5. //Installation and Upgrade Guide
  6. //tag::notable-breaking-changes[]
  7. TIP: {ess-skip-section}
  8. .The S3, GCS and Azure repository plugins are now included in Elasticsearch
  9. [%collapsible]
  10. ====
  11. *Details* +
  12. In previous versions of {es}, in order to register a snapshot repository
  13. backed by Amazon S3, Google Cloud Storage (GCS) or Microsoft Azure Blob
  14. Storage, you first had to install the corresponding Elasticsearch plugin,
  15. for example `repository-s3`. These plugins are now included in {es} by
  16. default.
  17. *Impact* +
  18. You no longer need to install the following plugins, and not should attempt
  19. to do so.
  20. * `repository-azure`
  21. * `repository-gcs`
  22. * `repository-s3`
  23. {es} and the `elasticsearch-plugin` CLI tool have been changed to tolerate
  24. attempted installation and removal of these plugins in order to avoid
  25. breaking any existing automation. In the future, attempting to install
  26. these plugins will be an error.
  27. Specifically, the `elasticsearch-plugin` CLI tool will not fail if you
  28. attempt to install any of the above plugins, and will instead print a
  29. warning and skip the plugins. If any of these plugins are already
  30. installed, for example because you installed them when running an older
  31. version of {es}, then you can still remove them with
  32. `elasticsearch-plugin`. Attempting to remove them if they are not installed
  33. will succeed but print a warnings.
  34. If you run {es} using Docker and you are managing plugins using a
  35. {plugins}/manage-plugins-using-configuration-file.html[configuration file], then when
  36. {es} first starts after you upgrade it, it will remove the above plugins if
  37. they already installed. If any of these plugins are specified in your
  38. configuration file, {es} will ignore them and emit a warning log message.
  39. ====
  40. .Third party plugins can no longer intercept REST requests (`RestHandlerWrapper`)
  41. [%collapsible]
  42. ====
  43. *Details* +
  44. In previous versions of {es}, third-party plugins could implement the
  45. `getRestHandlerWrapper` method to intercept all REST requests to the node. A
  46. common use of this feature was to implement custom security plugins to replace
  47. the built-in {security-features}. This extension point is no longer available
  48. to third-party plugins.
  49. *Impact* +
  50. Some third-party plugins that were designed to work with earlier versions of
  51. {es} might not be compatible with {es} version 8.0 or later.
  52. If you depend on any plugins that are not produced and supported by Elastic,
  53. check with the plugin author and ensure that the plugin is available for your
  54. target version of {es} before upgrading.
  55. ====
  56. //end::notable-breaking-changes[]