From dd30e867d0ff8855a4284a9487a7e6c1bec5f755 Mon Sep 17 00:00:00 2001 From: Josh Mock Date: Tue, 9 Apr 2024 12:09:36 -0500 Subject: [PATCH 1/2] Switch 8.6 clients to only get patch updates to transport --- docs/changelog.asciidoc | 7 +++++++ package.json | 6 +++--- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/docs/changelog.asciidoc b/docs/changelog.asciidoc index e4e245616..4cd295326 100644 --- a/docs/changelog.asciidoc +++ b/docs/changelog.asciidoc @@ -1,6 +1,13 @@ [[changelog-client]] == Release notes +[discrete] +=== 8.6.1 + +[discrete] +===== Bump @elastic/transport to ~8.3.1 +Switching from `^8.3.1` to `~8.3.1` ensures 8.6 client users are not required to update to Node.js v18+, which is a new requirement set by `@elastic/transport` v8.5.0. See https://github.com/elastic/elastic-transport-js/issues/91[elastic/elastic-transport-js#91] for details. + [discrete] === 8.6.0 diff --git a/package.json b/package.json index c2d4271f2..2e037c680 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@elastic/elasticsearch", - "version": "8.6.0", - "versionCanary": "8.6.0-canary.0", + "version": "8.6.1", + "versionCanary": "8.6.1-canary.0", "description": "The official Elasticsearch client for Node.js", "main": "index.js", "types": "index.d.ts", @@ -81,7 +81,7 @@ "zx": "^6.1.0" }, "dependencies": { - "@elastic/transport": "^8.3.1", + "@elastic/transport": "~8.3.1", "tslib": "^2.4.0" }, "tap": { From d3a1e21e71872835139675dc28ce85e2173f1c8d Mon Sep 17 00:00:00 2001 From: Josh Mock Date: Tue, 9 Apr 2024 12:18:33 -0500 Subject: [PATCH 2/2] Fix escaping on asciidocs --- docs/changelog.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/changelog.asciidoc b/docs/changelog.asciidoc index 4cd295326..1ef716cdc 100644 --- a/docs/changelog.asciidoc +++ b/docs/changelog.asciidoc @@ -5,7 +5,7 @@ === 8.6.1 [discrete] -===== Bump @elastic/transport to ~8.3.1 +===== Bump @elastic/transport to `~8.3.1` Switching from `^8.3.1` to `~8.3.1` ensures 8.6 client users are not required to update to Node.js v18+, which is a new requirement set by `@elastic/transport` v8.5.0. See https://github.com/elastic/elastic-transport-js/issues/91[elastic/elastic-transport-js#91] for details. [discrete]