Remove deprecated endpoints containing _xpack.#48170
Merged
jtibshirani merged 5 commits intoelastic:masterfrom Oct 29, 2019
Merged
Remove deprecated endpoints containing _xpack.#48170jtibshirani merged 5 commits intoelastic:masterfrom
jtibshirani merged 5 commits intoelastic:masterfrom
Conversation
3bcb37d to
3f443b3
Compare
Collaborator
|
Pinging @elastic/es-core-infra (:Core/Infra/REST API) |
The endpoints with _xpack in their path were deprecated in 7.x and can now be removed. This commit removes deprecated endpoints for the following APIs: * deprecation * graph * license * monitoring * rollup * SQL * watcher
3f443b3 to
c304abf
Compare
Contributor
Author
|
@elasticmachine run elasticsearch-ci/packaging-sample-matrix |
rjernst
approved these changes
Oct 28, 2019
| In 7.0, we deprecated REST endpoints that contain `_xpack` in their path. These | ||
| endpoints are now removed in 8.0. Each endpoint that was deprecated and removed | ||
| is replaced with a new endpoint that does not contain `_xpack`. As an example, | ||
| `/{index}/_xpack/graph/_explore` is replaced by `/{index}/graph/_explore`. |
Member
There was a problem hiding this comment.
Isn't graph prefixed with an underscore, ie _graph?
Contributor
Author
There was a problem hiding this comment.
Oops, thanks. Yes _xpack has been removed but also graph/_explore -> _graph/explore.
Contributor
Author
|
@elasticmachine run elasticsearch-ci/bwc |
edsavage
added a commit
to edsavage/elasticsearch
that referenced
this pull request
Jul 20, 2020
Extends the work done in elastic#48170 to the ml module
edsavage
added a commit
that referenced
this pull request
Jul 20, 2020
Extends the work done in #48170 to the ml module
80 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The endpoints with
_xpackin their path were deprecated in 7.x and can now beremoved. This commit removes deprecated endpoints for the following APIs:
Relates to #35958.