chore(deps): update dependency elasticsearch to v7.13.0 #6004
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.
This PR contains the following updates:
==7.5.1
->==7.13.0
Release Notes
elastic/elasticsearch-py
v7.13.0
Compare Source
Client
Added
ELASTIC_CLIENT_APIVERSIONING=1
is set the client will send the headers Accept and Content-Type with the following value:application/vnd.elasticsearch+json;compatible-with=7
.APIs
Cat
include_unloaded_segments
parameter to thecat.nodes
APISnapshot Features
features.reset_features
experimental APIFleet
fleet.global_checkpoints
expiremental APIIngest
ingest.geo_ip_stats
APIMachine Learning
ml.delete_trained_model_alias
APIml.preview_data_frame_analytics
APIml.put_trained_model_alias
APIml.delete_data_frame_analytics
,ml.delete_trained_model
,ml.explain_data_frame_analytics
,ml.get_data_fram_analytics
,ml.get_data_frame_analytics_stats
,ml.get_trained_models
,ml.get_trained_models_stats
,ml.put_trained_model
,ml.start_data_frame_analytics
,ml.stop_data_frame_analytics
,ml.update_data_frame_analytics
APIs from beta to stable.Nodes
include_unloaded_segments
parameter tonode.stats
APISearchable Snapshots
searchable_snapshots.cache_stats
experimental APISecurity
security.clear_cached_service_tokens
beta APIsecurity.create_service_token
beta APIsecurity.delete_service_token
beta APIsecurity.get_service_accounts
beta APIsecurity.get_service_credentials
beta APIShutdown
shutdown.delete_node
experiemental APIshutdown.get_node
experimental APIshutdown.put_node
experimental APISnapshots
index_details
parameter tosnapshot.get
APIText Structure
text_structure.find_structure
API from experimental to stablev7.12.1
Compare Source
APIs
Text Structure
text_structure.find_text_structure
API from experimental to stablev7.12.0
Compare Source
APIs
Autoscaling
autoscaling.delete_autoscaling_policy
,autoscaling.get_autoscaling_policy
, andautoscaling.put_autoscaling_policy
APIs from experimental to stableEQL
eql.get_status
APILogash
logstash.delete_pipeline
,logstash.get_pipeline
, andlogstash.put_pipeline
APIsMachine Learning
ml.find_text_structure
APISearchable Snapshots
storage
parameter to thesearchable_snapshots.mount
APIlevel
parameter to thesearchable_snapshots.stats
APISearch
min_compatible_shard_node
parameter tosearch()
Text Structure
text_structure.find_text_structure
APIv7.11.0
Compare Source
Client
Added
X-Elastic-Client-Meta
HTTP header and themeta_header
parameter for controlling the header (#1473)ElasticsearchWarning
which is raised when theWarning
HTTP header is returned from Elasticsearch.ElasticsearchDeprecationWarning
is now an alias for this warning type (#1495)APIs
Async Search
async_search.status
APIAutoscaling
autoscaling.get_autoscaling_capacity
experimental APIautoscaling.get_autoscaling_decision
experimental APICat
cat.tasks
API parametersnode_id
andparent_task
tonodes
andparent_task_id
Cluster
cluster.delete_component_template
,cluster.exists_component_template
, andcluster.get_component_template
,cluster.put_component_template
APIs from experimental to stableEQL
eql.delete
,eql.get
,eql.search
APIs from beta to stableIndices
indices.migrate_to_data_stream
APIindices.promote_data_stream
APIexpand_wildcards
parameter to theindices.delete_data_stream
andindices.get_data_stream
APIsindices.delete_index_template
,indices.exists_index_template
,indices.get_index_template
,indices.put_index_template
,indices.simulate_index_template
, andindices.simulate_template
APIs moved from experimental to stableMachine Learning
ml.upgrade_job_snapshot
APIexclude_generated
parameter toml.get_data_frame_analytics
,ml.get_datafeeds
,ml.get_jobs
, andml.get_trained_models
APIsml.delete_data_frame_analytics
,ml.delete_trained_model
,ml.explain_data_frame_analytics
,ml.get_data_frame_analytics
,ml.get_data_frame_analytics_stats
,ml.get_trained_models
,ml.get_trained_models_stats
,ml.put_data_frame_analytics
,ml.put_trained_model
,ml.start_data_frame_analytics
,ml.stop_data_frame_analytics
,ml.update_data_frame_analytics
APIs from experimental to betaRollup
rollup.rollup
APITransform
exclude_generated
parameter totransform.get_transform
APIWatcher
watcher.query_watches
APIv7.10.1
Compare Source
Client
Fixed
scroll
response returned without a value for_shards.skipped
(#1451)Connection.host
property (#1460)Changed
collections.Mapping
in favor ofcollections.abc.Mapping
for Python 3.9 (#1443)v7.10.0
Compare Source
#1297
,#1406
)Optimistic Concurrency Control options
_(
_if_seq_no
/_if_primary_term
) to bulk helpers (#1387
_)_source
with"_op_type": "update"
bulk helpers (
#1387
_)Connection.log_request_failure()
call would receive the compressedHTTP body rather than uncompressed when an error is raised for
RequestsHttpConnection
(#1394
_)sniff_timeout
was used instead ofsniffer_timeout
(#1431
_)yarl
dependency from[async]
extra to avoid issue where pipwould override
aiohttp
's pin ofyarl
. This is not a problem if youinstall with
--use-feature=2020-resolver
. Users should see no changes. (#1401
_).. _Optimistic Concurrency Control options: https://www.elastic.co/guide/en/elasticsearch/reference/current/optimistic-concurrency-control.html
.. _#1431: elastic/elasticsearch-py#1431
.. _#1406: elastic/elasticsearch-py#1406
.. _#1401: elastic/elasticsearch-py#1401
.. _#1394: elastic/elasticsearch-py#1394
.. _#1387: elastic/elasticsearch-py#1387
.. _#1297: elastic/elasticsearch-py#1297
v7.9.1
Compare Source
#1353
_)url_prefix
when usingAIOHttpConnection
(#1357
_).. _#1353: elastic/elasticsearch-py#1353
.. _#1357: elastic/elasticsearch-py#1357
v7.9.0
Compare Source
Added support for ES 7.9 APIs
Fixed retries to not raise an error when
sniff_on_connection_error=True
and a
TransportError
is raised during the sniff step. Instead theretry will continue or the error that triggered the retry will be raised
(See
#1279
_ and#1326
_).. _#1326: #1326
.. _#1279: #1279
v7.8.1
Compare Source
accept_enterprise
parameter toxpack.info
API (See#1337
_).. _#1337: elastic/elasticsearch-py#1337
v7.8.0
Compare Source
v7.7.1
Compare Source
v7.7.0
Compare Source
#1182
_)ElasticsearchDeprecationWarning
which is raised when aWarning
HTTP header is sent by Elasticsearch. (See
#1179
_)numpy
andpandas
.data types to
JSONSerializer
. (See#1180
_)certifi
as a dependency so HTTPS connections work automatically.#1169
, thanks toMorten Hauberg <https://github.com/mortenhauberg>
!).. _#1169: elastic/elasticsearch-py#1169
.. _#1179: elastic/elasticsearch-py#1179
.. _#1182: elastic/elasticsearch-py#1182
v7.6.0
Compare Source
Configuration
📅 Schedule: At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻️ Rebasing: Renovate will not automatically rebase this PR, because other commits have been found.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by WhiteSource Renovate. View repository job log here.