Skip to content

Commit 859ca63

Browse files
authored
Switch 8.10 clients to only get patch updates to transport (#2214)
1 parent b70a549 commit 859ca63

File tree

2 files changed

+59
-4
lines changed

2 files changed

+59
-4
lines changed

docs/changelog.asciidoc

+56-1
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,40 @@
11
[[changelog-client]]
22
== Release notes
33

4+
[discrete]
5+
=== 8.10.1
6+
7+
[discrete]
8+
==== Fixes
9+
10+
[discrete]
11+
===== Bump @elastic/transport to `~8.3.4`
12+
13+
Switching from `^8.3.4` to `~8.3.4` ensures 8.10 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.
14+
415
[discrete]
516
=== 8.10.0
617

718
[discrete]
8-
=== Features
19+
==== Features
920

1021
[discrete]
1122
===== Support for Elasticsearch `v8.10.0`
1223

1324
You can find all the API changes
1425
https://www.elastic.co/guide/en/elasticsearch/reference/8.10/release-notes-8.10.0.html[here].
1526

27+
[discrete]
28+
=== 8.9.2
29+
30+
[discrete]
31+
==== Fixes
32+
33+
[discrete]
34+
===== Bump @elastic/transport to `~8.3.4`
35+
36+
Switching from `^8.3.4` to `~8.3.4` ensures 8.9 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.
37+
1638
[discrete]
1739
=== 8.9.1
1840

@@ -49,6 +71,17 @@ In the https://www.elastic.co/guide/en/elasticsearch/client/javascript-api/curre
4971

5072
The `user-agent` header the client used to connect to Elasticsearch was using a non-standard format that has been improved.
5173

74+
[discrete]
75+
=== 8.8.2
76+
77+
[discrete]
78+
==== Fixes
79+
80+
[discrete]
81+
===== Bump @elastic/transport to `~8.3.2`
82+
83+
Switching from `^8.3.2` to `~8.3.2` ensures 8.8 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.
84+
5285
[discrete]
5386
=== 8.8.1
5487

@@ -94,6 +127,17 @@ https://www.elastic.co/guide/en/elasticsearch/reference/8.8/release-notes-8.8.0.
94127

95128
Prior releases contained a bug where type declarations for legacy types that include a `body` key were not actually importing the type that includes the `body` key.
96129

130+
[discrete]
131+
=== 8.7.3
132+
133+
[discrete]
134+
==== Fixes
135+
136+
[discrete]
137+
===== Bump @elastic/transport to `~8.3.1`
138+
139+
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.
140+
97141
[discrete]
98142
=== 8.7.0
99143

@@ -103,6 +147,17 @@ Prior releases contained a bug where type declarations for legacy types that inc
103147
You can find all the API changes
104148
https://www.elastic.co/guide/en/elasticsearch/reference/8.7/release-notes-8.7.0.html[here].
105149

150+
[discrete]
151+
=== 8.6.1
152+
153+
[discrete]
154+
==== Fixes
155+
156+
[discrete]
157+
===== Bump @elastic/transport to `~8.3.1`
158+
159+
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.
160+
106161
[discrete]
107162
=== 8.6.0
108163

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@elastic/elasticsearch",
3-
"version": "8.10.0",
4-
"versionCanary": "8.10.0-canary.1",
3+
"version": "8.10.1",
4+
"versionCanary": "8.10.1-canary.0",
55
"description": "The official Elasticsearch client for Node.js",
66
"main": "index.js",
77
"types": "index.d.ts",
@@ -82,7 +82,7 @@
8282
"zx": "^7.2.2"
8383
},
8484
"dependencies": {
85-
"@elastic/transport": "^8.3.4",
85+
"@elastic/transport": "~8.3.4",
8686
"tslib": "^2.4.0"
8787
},
8888
"tap": {

0 commit comments

Comments
 (0)