From c698fcda74a027973a860d5b70e49182db59a134 Mon Sep 17 00:00:00 2001 From: delvedor Date: Wed, 25 May 2022 17:17:55 +0200 Subject: [PATCH 1/3] Changelog for 8.2.1 --- docs/changelog.asciidoc | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/docs/changelog.asciidoc b/docs/changelog.asciidoc index ba5ec954f..278561c51 100644 --- a/docs/changelog.asciidoc +++ b/docs/changelog.asciidoc @@ -4,6 +4,35 @@ [discrete] === 8.2.0 +[discrete] +==== Fixes + +[discrete] +===== Support for Elasticsearch `v8.2.1` + +You can find all the API changes +https://www.elastic.co/guide/en/elasticsearch/reference/8.2/release-notes-8.2.1.html[here]. + +[discrete] +===== Fix ndjson APIs https://github.com/elastic/elasticsearch-js/pull/1688[#1688] + +The previous release contained a bug that broken ndjson APIs. +We have released `v8.2.0-patch.1` to address this. +This fix is the same as the one we have released and we storngly recommend upgrading to this version. + +[discrete] +===== Fix node shutdown apis https://github.com/elastic/elasticsearch-js/pull/1697[#1697] + +The shutdown APIs wheren't complete, this fix completes them. + +[discrete] +==== Types: move query keys to body https://github.com/elastic/elasticsearch-js/pull/1693[#1693] + +The types definitions where wrongly representing the types of fields present in both query and body. + +[discrete] +=== 8.2.0 + [discrete] ==== Breaking changes From 4c5e845c6e5a0301cecf9f9525e6549f3e7f2983 Mon Sep 17 00:00:00 2001 From: delvedor Date: Wed, 25 May 2022 17:19:29 +0200 Subject: [PATCH 2/3] Typo --- docs/changelog.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/changelog.asciidoc b/docs/changelog.asciidoc index 278561c51..9d0d1c2dd 100644 --- a/docs/changelog.asciidoc +++ b/docs/changelog.asciidoc @@ -2,7 +2,7 @@ == Release notes [discrete] -=== 8.2.0 +=== 8.2.1 [discrete] ==== Fixes From e72984c58fbbd636e8a1e1e6ef2a83abe56f268b Mon Sep 17 00:00:00 2001 From: delvedor Date: Wed, 25 May 2022 17:31:53 +0200 Subject: [PATCH 3/3] Fix linter --- src/helpers.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/helpers.ts b/src/helpers.ts index a96de9c7f..7df2016f2 100644 --- a/src/helpers.ts +++ b/src/helpers.ts @@ -19,6 +19,7 @@ /* eslint-disable @typescript-eslint/naming-convention */ /* eslint-disable @typescript-eslint/promise-function-async */ +/* eslint-disable @typescript-eslint/no-unnecessary-type-assertion */ import assert from 'assert' import { promisify } from 'util'