From e8b829a1033374e0573da6326b2285eecd6fc849 Mon Sep 17 00:00:00 2001 From: Josh Mock Date: Tue, 9 Apr 2024 12:16:58 -0500 Subject: [PATCH] Switch 8.7 clients to only get patch updates to transport --- docs/changelog.asciidoc | 14 ++++++++++++++ package.json | 8 ++++---- 2 files changed, 18 insertions(+), 4 deletions(-) diff --git a/docs/changelog.asciidoc b/docs/changelog.asciidoc index c61df9b82..724a9547e 100644 --- a/docs/changelog.asciidoc +++ b/docs/changelog.asciidoc @@ -1,6 +1,13 @@ [[changelog-client]] == Release notes +[discrete] +=== 8.7.3 + +[discrete] +===== Bump @elastic/transport to `~8.3.1` +Switching from `^8.3.1` to `~8.3.1` ensures 8.7 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.7.0 @@ -10,6 +17,13 @@ You can find all the API changes https://www.elastic.co/guide/en/elasticsearch/reference/8.7/release-notes-8.7.0.html[here]. +[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 1d24863b3..552922490 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@elastic/elasticsearch", - "version": "8.7.2", - "versionCanary": "8.7.2-canary.0", + "version": "8.7.3", + "versionCanary": "8.7.3-canary.0", "description": "The official Elasticsearch client for Node.js", "main": "index.js", "types": "index.d.ts", @@ -86,7 +86,7 @@ "zx": "^6.1.0" }, "dependencies": { - "@elastic/transport": "^8.3.1", + "@elastic/transport": "~8.3.1", "tslib": "^2.4.0" }, "tap": { @@ -96,4 +96,4 @@ "coverage": false, "check-coverage": false } -} \ No newline at end of file +}