From 1de7ed154150d73fe45384cf1e8788228efc98b2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 27 Sep 2022 10:34:12 -0500 Subject: [PATCH 1/3] [8.5] Add release notes for 8.4.0 Co-authored-by: Seth Michael Larson --- docs/guide/release-notes/8-4-0.asciidoc | 12 ++++++++++++ docs/guide/release-notes/index.asciidoc | 2 ++ 2 files changed, 14 insertions(+) create mode 100644 docs/guide/release-notes/8-4-0.asciidoc diff --git a/docs/guide/release-notes/8-4-0.asciidoc b/docs/guide/release-notes/8-4-0.asciidoc new file mode 100644 index 0000000..5467e71 --- /dev/null +++ b/docs/guide/release-notes/8-4-0.asciidoc @@ -0,0 +1,12 @@ +[[release-notes-8-4-0]] +=== 8.4.0 Release Notes + +[discrete] +==== Added + +- Added the `app_search.search_es_search` API method. + +[discrete] +==== Changed + +- Changed URL parsing to use default ports for `http` and `https` schemes instead of raising an error. diff --git a/docs/guide/release-notes/index.asciidoc b/docs/guide/release-notes/index.asciidoc index c18a31b..2893702 100644 --- a/docs/guide/release-notes/index.asciidoc +++ b/docs/guide/release-notes/index.asciidoc @@ -4,6 +4,7 @@ [discrete] === 8.x +* <> * <> * <> @@ -19,6 +20,7 @@ * <> * <> +include::8-4-0.asciidoc[] include::8-3-0.asciidoc[] include::8-2-0.asciidoc[] include::7-17-0.asciidoc[] From e9f2d9a041b2c36162fafdc865312396342ac7eb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 2 Nov 2022 08:31:57 -0500 Subject: [PATCH 2/3] Add release notes for 8.5.0 Co-authored-by: Seth Michael Larson --- docs/guide/release-notes/8-5-0.asciidoc | 4 ++++ docs/guide/release-notes/index.asciidoc | 25 ++----------------------- 2 files changed, 6 insertions(+), 23 deletions(-) create mode 100644 docs/guide/release-notes/8-5-0.asciidoc diff --git a/docs/guide/release-notes/8-5-0.asciidoc b/docs/guide/release-notes/8-5-0.asciidoc new file mode 100644 index 0000000..7d4b268 --- /dev/null +++ b/docs/guide/release-notes/8-5-0.asciidoc @@ -0,0 +1,4 @@ +[[release-notes-8-5-0]] +=== 8.5.0 Release Notes + +Client is compatible with Elastic Enterprise Search 8.5.0 diff --git a/docs/guide/release-notes/index.asciidoc b/docs/guide/release-notes/index.asciidoc index 2893702..6eb8357 100644 --- a/docs/guide/release-notes/index.asciidoc +++ b/docs/guide/release-notes/index.asciidoc @@ -1,33 +1,12 @@ [[release_notes]] == Release Notes -[discrete] -=== 8.x - +* <> * <> * <> * <> -[discrete] -=== 7.x - -* <> -* <> -* <> -* <> -* <> -* <> -* <> -* <> - +include::8-5-0.asciidoc[] include::8-4-0.asciidoc[] include::8-3-0.asciidoc[] include::8-2-0.asciidoc[] -include::7-17-0.asciidoc[] -include::7-16-0.asciidoc[] -include::7-15-0.asciidoc[] -include::7-14-0.asciidoc[] -include::7-13-0.asciidoc[] -include::7-12-0.asciidoc[] -include::7-11-0.asciidoc[] -include::7-10-0.asciidoc[] From 7f9904ef6f3d183854ca27ad7d400d17e95495f9 Mon Sep 17 00:00:00 2001 From: Gao Ruifeng Date: Tue, 29 Nov 2022 14:22:48 +0800 Subject: [PATCH 3/3] Initialize app search client with bearer_auth flag `http_flag` gives warning message: DeprecationWarning: The 'http_auth' parameter is deprecated. Use 'basic_auth' or 'bearer_auth' parameters instead --- docs/guide/app-search-api.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/app-search-api.asciidoc b/docs/guide/app-search-api.asciidoc index 4c37cb0..851218f 100644 --- a/docs/guide/app-search-api.asciidoc +++ b/docs/guide/app-search-api.asciidoc @@ -25,7 +25,7 @@ from elastic_enterprise_search import AppSearch app_search = AppSearch( "http://localhost:3002", - http_auth="private-..." + bearer_auth="private-..." ) # Now call API methods app_search.search(...)